Tranga-Website/Dockerfile

7 lines
171 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
2024-08-10 17:50:32 +02:00
CMD ["nginx", "-g", "daemon off;"]