Files
axum-tower-sessions-edge/Worker.Node.Dockerfile
2025-08-07 19:06:29 -04:00

13 lines
193 B
Docker

FROM node:20-slim
WORKDIR /app
COPY example-service .
RUN npm install --production
EXPOSE 8787
HEALTHCHECK CMD curl --fail http://localhost:8787 || exit 1
ENTRYPOINT ["npm", "run", "dev"]