chore: small changes dockerfile

This commit is contained in:
dec0dOS 2023-10-04 21:43:45 +01:00
parent 306112de5d
commit 26cb077a70
2 changed files with 1 additions and 3 deletions

View file

@ -3,8 +3,6 @@
*Dockerfile*
*docker-compose*
node_modules
jsconfig.json
tsconfig.json
.eslintrc.json
.DS_Store
tmp

View file

@ -3,7 +3,7 @@ FROM --platform=$BUILDPLATFORM node:lts-alpine as frontend-build
ENV GENERATE_SOURCEMAP=false
WORKDIR /app/
COPY --link package.json yarn.lock* .yarnrc.yml ./
COPY --link tsconfig.json package.json yarn.lock* .yarnrc.yml ./
COPY --link .yarn/ ./.yarn
WORKDIR /app/frontend
COPY --link ./frontend/package.json /app/frontend