12 lines
175 B
Docker
12 lines
175 B
Docker
FROM alpine:3.3
|
|
|
|
MAINTAINER Roman Tarnavski
|
|
|
|
RUN apk add --update nginx
|
|
|
|
COPY nginx.conf /etc/nginx/
|
|
ADD ./dist/ /usr/share/nginx/html
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD nginx -g 'daemon off;' |