diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index e2560a1..5eadece 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -1,10 +1,9 @@ FROM node:latest WORKDIR /Api -RUN ls ADD package.json /Api ADD tsconfig.json /Api ADD . /Api -RUN npm install +RUN npm install RUN npm run build EXPOSE 8080 CMD [ "node","." ]