diff --git a/Dockerfile b/Dockerfile index a0d7e953..d82d9c5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,13 @@ -FROM alpine:3.3 +FROM alpine:3.4 MAINTAINER Roman Tarnavski RUN apk add --update nginx +RUN mkdir -p /run/nginx COPY nginx.conf /etc/nginx/ ADD ./dist/ /usr/share/nginx/html EXPOSE 8080 -CMD nginx -g 'daemon off;' \ No newline at end of file +CMD nginx -g 'daemon off;'