mirror of
https://github.com/seemueller-io/cluster.git
synced 2025-09-08 22:56:46 +00:00
13 lines
200 B
Docker
13 lines
200 B
Docker
FROM node:20-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY deploy/example-service .
|
|
|
|
RUN npm install --production
|
|
|
|
EXPOSE 8787
|
|
|
|
HEALTHCHECK CMD curl --fail http://localhost:8787 || exit 1
|
|
|
|
ENTRYPOINT ["npm", "run", "dev"] |