Files
coder-build-test/Dockerfile

6 lines
73 B
Docker

FROM node:22-slim
WORKDIR /app
COPY . .
EXPOSE 3000
CMD ["npm", "start"]