plausible-pageviews-api/Dockerfile
Sangelo 7e175c597b
All checks were successful
Build and Push Docker Image / docker-build (push) Successful in 11s
[a] add metrics port export to Dockerfile
2024-10-21 16:13:39 +02:00

16 lines
198 B
Docker

# container img
FROM node:14
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"]