9 lines
175 B
Docker
9 lines
175 B
Docker
FROM nginx:stable-alpine3.23-slim AS production
|
|
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY dist /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|