diff --git a/Dockerfile b/Dockerfile index c64f491..9a0bd93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:14 -WORKDIR /app +WORKDIR /app/cdn-app-insider COPY package*.json ./ @@ -8,6 +8,10 @@ RUN npm install COPY . . +RUN [ ! -f cdn-files ] && touch cdn-files || true + +RUN [ ! -f report ] && touch report || true + EXPOSE 5053 -CMD [ "npm", "start" ] +CMD [ "npm", "start" ] \ No newline at end of file