mnisyif_frontend/Dockerfile
2024-07-12 01:02:14 -04:00

6 lines
155 B
Docker

# Dockerfile
FROM nginx:alpine
COPY dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]