Files
Checkmate/docker/coolify/server.Dockerfile
Alex Holliday 5dcbae55f4 install ping
2025-09-08 06:57:10 -07:00

18 lines
245 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 ../../ ./
EXPOSE 5000
CMD ["node", "index.js"]