- removed node dependency - removed un-necessary source-code bulk - serving just the static content
11 lines
145 B
Docker
11 lines
145 B
Docker
FROM alpine:3.3
|
|
|
|
MAINTAINER Roman Tarnavski
|
|
|
|
RUN apk add --update nginx
|
|
|
|
ADD ./dist/ /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
|
|
CMD nginx -g 'daemon off;' |