Files
Checkmate/docker/coolify/server.Dockerfile
Alex Holliday b93e3327a7 alpine -> slim
2025-09-01 08:53:03 -07:00

13 lines
132 B
Docker
Executable File

FROM node:20-slim
WORKDIR /app
COPY ../../package*.json ./
RUN npm install
COPY ../../ ./
EXPOSE 5000
CMD ["node", "index.js"]