plausible-pageviews-api/Dockerfile
Sangelo bcb75363f9
All checks were successful
Build and Push Docker Image / docker-build (push) Successful in 1m14s
[c] bugfix a brainfart
2024-10-21 16:57:02 +02:00

16 lines
198 B
Docker

# container img
FROM node:20
WORKDIR /app
# copy files and install deps
COPY package*.json ./
RUN npm install
COPY . .
# main port
EXPOSE 3000
# metrics port
EXPOSE 3001
CMD ["node", "main.js"]