diff --git a/Dockerfile b/Dockerfile index e711daa..96084d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,9 @@ FROM node:19.1-alpine as build RUN apk update && rm -rf /var/cache/apk/* WORKDIR /usr/app -COPY package.json . -COPY tsconfig.json . +COPY . . RUN yarn install --ignore-scripts --non-interactive --frozen-lockfile && yarn cache clean -COPY . . RUN yarn build