Files
CDN-APP-INSIDER/Dockerfile
Dinawo 43f8189758
All checks were successful
continuous-integration/drone/push Build is passing
Remove unnecessary volume mount in Dockerfile
2024-03-27 20:35:23 +01:00

21 lines
290 B
Docker

FROM node:14
WORKDIR /app/cdn-app-insider
COPY package*.json ./
RUN npm install
COPY . .
RUN mkdir -p cdn-files
RUN mkdir -p report
RUN [ ! -f setup.json ] && echo '{}' > setup.json || true
RUN [ ! -f user.json ] && echo '{}' > user.json || true
EXPOSE 5053
CMD [ "npm", "start" ]