Files
CDN-APP-INSIDER/Dockerfile
Dinawo 423f7d4989
All checks were successful
continuous-integration/drone/push Build is passing
Add empty setup.json file in Dockerfile
2024-04-18 01:01:35 +02:00

19 lines
318 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
# Create an empty setup.json file
RUN touch /app/cdn-app-insider/data/setup.json
EXPOSE 5053
CMD [ "npm", "run", "start" ]