mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-18 07:28:31 -05:00
21 lines
270 B
Docker
Executable File
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"]
|