Tranga-Website/Dockerfile

6 lines
170 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
ENV API_URL=http://tranga-api:6531
CMD ["nginx", "-g", "daemon off;"]