Tranga-Website/Dockerfile

5 lines
135 B
Docker
Raw Normal View History

2023-05-25 00:05:31 +02:00
FROM nginx:alpine3.17-slim
2024-03-06 05:04:11 +01:00
COPY ./Website /usr/share/nginx/html
COPY ./nginx /etc/nginx
2023-05-24 23:53:39 +02:00
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]