Files
CDN-APP-INSIDER/Dockerfile
Dinawo 06a694417b
All checks were successful
continuous-integration/drone/push Build is passing
Add new directories for data, report, and CDN files in Dockerfile and docker-compose.yml
2024-04-17 23:39:48 +02:00

16 lines
188 B
Docker

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