mirror of
https://github.com/denuitt1/mhr-cfw.git
synced 2026-05-17 21:24:36 +03:00
14 lines
172 B
Docker
14 lines
172 B
Docker
FROM node:18-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY upstream_forwarder.js .
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
ENV PORT=8787
|
|
ENV HOST=0.0.0.0
|
|
|
|
EXPOSE 8787
|
|
|
|
CMD ["node", "upstream_forwarder.js"] |