Files
CDN-APP-INSIDER/Dockerfile
Dinawo d5671b7569
All checks were successful
continuous-integration/drone/push Build is passing
Refactor Dockerfile and docker-compose.yml to use new directory structure
2024-04-18 00:49:47 +02:00

16 lines
236 B
Docker

FROM node:14
WORKDIR /app/cdn-app-insider
COPY package*.json ./
RUN npm install
COPY . .
RUN mkdir -p /app/cdn-app-insider/data /app/cdn-app-insider/report /app/cdn-app-insider/cdn-files
EXPOSE 5053
CMD [ "npm", "run", "start" ]