Files
CDN-APP-INSIDER/Dockerfile
Dinawo ce8f1bbbac
All checks were successful
continuous-integration/drone/push Build is passing
Update v1.0.0-beta.13
Several modifications made to the API and several bug fixes
2024-06-02 18:13:28 +02:00

20 lines
308 B
Docker

FROM node:22
WORKDIR /srv/docker/cdn-app-insider
COPY package*.json ./
RUN npm install
RUN ln -s /srv/docker/cdn-app-insider/data /data
RUN ln -s /srv/docker/cdn-app-insider/cdn-files /cdn-files
RUN ln -s /srv/docker/cdn-app-insider/report /report
COPY . .
EXPOSE 5053
CMD [ "npm", "run", "start" ]