Files
CDN-APP-INSIDER/Dockerfile
Dinawo bbcf436523
All checks were successful
continuous-integration/drone/push Build is passing
Update Dockerfile to create cdn-files and report files
2024-03-27 18:32:06 +01:00

17 lines
225 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
EXPOSE 5053
CMD [ "npm", "start" ]