Skip to content
Snippets Groups Projects
Dockerfile 175 B
Newer Older
  • Learn to ignore specific revisions
  • FROM nginx:1.19.2
    
    rlacko's avatar
    rlacko committed
    
    
    # copy the files builded with npm run build
    COPY build /var/www
    COPY nginx.conf /etc/nginx/nginx.conf
    
    rlacko's avatar
    rlacko committed
    
    EXPOSE 3000
    
    
    ENTRYPOINT ["nginx","-g","daemon off;"]