Files
phorge.fr/Dockerfile
l-nmch f45a108808
All checks were successful
Docker Build and Push for Main Branch / docker (push) Successful in 11m31s
chore(core): Added bare TCP access
2026-05-11 15:50:11 +02:00

10 lines
90 B
Docker

FROM node:18-alpine
WORKDIR /usr/src/app
COPY . .
EXPOSE 80
CMD ["node", "server.js"]