diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index 2579dd8..025f399 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -3,8 +3,12 @@ RUN ls /usr ADD package.json /app ADD tsconfig.json /app RUN cat package.json +RUN find . -name package.json -type f -print +RUN mkdir /app WORKDIR /app ADD . /app +RUN find . -name package.json -type f -print +RUN find /app -name package.json -type f -print RUN npm install RUN npm run build