plausible-pageviews-api/Dockerfile

17 lines
198 B
Text
Raw Normal View History

# container img
2024-10-21 14:57:02 +00:00
FROM node:20
2024-10-21 13:29:20 +00:00
WORKDIR /app
# copy files and install deps
2024-10-21 13:29:20 +00:00
COPY package*.json ./
RUN npm install
COPY . .
# main port
2024-10-21 13:29:20 +00:00
EXPOSE 3000
# metrics port
EXPOSE 3001
2024-10-21 13:29:20 +00:00
CMD ["node", "main.js"]