25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
200 B

  1. FROM alpine:3.4
  2. MAINTAINER Roman Tarnavski
  3. RUN apk add --update nginx
  4. RUN mkdir -p /run/nginx
  5. COPY nginx.conf /etc/nginx/
  6. ADD ./dist/ /usr/share/nginx/html
  7. EXPOSE 8080
  8. CMD nginx -g 'daemon off;'