Skip to content
Snippets Groups Projects
Dockerfile 213 B
Newer Older
Radek Puš's avatar
Radek Puš committed
FROM ubuntu:latest
MAINTAINER rpus

COPY ./ClientApp/dist/ /app
WORKDIR /app

RUN apt-get update
RUN apt-get install -y nodejs
RUN apt-get install -y npm
RUN npm install -g http-server

ENTRYPOINT ["http-server"]