5af3005179
fix tranga.conf not redirecting /api/ requests
6 lines
170 B
Docker
6 lines
170 B
Docker
FROM nginx:alpine3.17-slim
|
|
COPY ./Website /usr/share/nginx/html
|
|
COPY ./nginx /etc/nginx
|
|
EXPOSE 80
|
|
ENV API_URL=http://tranga-api:6531
|
|
CMD ["nginx", "-g", "daemon off;"] |