This repository has been archived on 2025-06-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timetable-V2-Notify/Dockerfile
2023-06-23 20:43:21 +02:00

10 lines
134 B
Docker

FROM node:lts-alpine
WORKDIR /app
COPY package*.json /app/
RUN npm ci
COPY ./ /app/
VOLUME [ "/app/data" ]
CMD ["node", "index.js"]