f044c36
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM node:20 WORKDIR /app # install deps directly (hardcoded) RUN npm install express http-proxy # copy server COPY server.js . EXPOSE 7860 CMD ["node", "server.js"]