Files
Checkmate/docker/coolify/server.Dockerfile
T
2026-01-27 21:00:28 +00:00

21 lines
270 B
Docker
Executable File

FROM node:20-slim
# Install ping
RUN apt-get update \
&& apt-get install -y iputils-ping \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY ../../package*.json ./
RUN npm install
COPY ../../ ./
RUN npm run build
EXPOSE 5000
CMD ["node", "dist/index.js"]