diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index e886109..312669a 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -3,9 +3,9 @@ ENV PORT=8080 WORKDIR /app ARG http_proxy=http://193.49.118.36:8080 https_proxy=http://193.49.118.36:8080 RUN ls && pwd -COPY package*.json ./ -COPY tsconfig.json ./ -COPY . . +COPY package*.json /app +COPY tsconfig.json /app +COPY . /app RUN npm install RUN npm run build