Dockerfile 203 B

12345678910111213
  1. # Version 1.0.0
  2. FROM nginx:1.21.6-alpine
  3. MAINTAINER iamsee "root@iamsee.com"
  4. # The environment variable
  5. ENV APP_NAME="gdsc-web"
  6. COPY nginx-conf /etc/nginx/
  7. EXPOSE 80
  8. COPY dist /usr/share/nginx/html