Files
CDN-APP-INSIDER/Dockerfile
Dinawo a1bf5d9f2f
All checks were successful
continuous-integration/drone/push Build is passing
Add user.json and file_info.json files
2024-03-27 18:43:57 +01:00

21 lines
337 B
Docker

FROM node:14
WORKDIR /app/cdn-app-insider
COPY package*.json ./
RUN npm install
COPY . .
RUN [ ! -f cdn-files ] && touch cdn-files || true
RUN [ ! -f report ] && touch report || true
RUN [ ! -f user.json ] && touch user.json || true
RUN [ ! -f file_info.json ] && touch file_info.json || true
EXPOSE 5053
CMD [ "npm", "start" ]