Files
PaperTrader/composeApp/src/webMain/Dockerfile
T
2026-05-13 14:19:41 +02:00

5 lines
175 B
Docker

FROM nginx:alpine
EXPOSE 80
COPY build/dist/wasmJs/productionExecutable /data/www
COPY src/webMain/nginx.conf /etc/nginx/conf.d/default.conf
CMD ["nginx", "-g", "daemon off;"]