From 26cb077a7099fb7c4b6a18a691bbba5294077ce4 Mon Sep 17 00:00:00 2001 From: dec0dOS Date: Wed, 4 Oct 2023 21:43:45 +0100 Subject: [PATCH] chore: small changes dockerfile --- .dockerignore | 2 -- docker/zero-ui/Dockerfile | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.dockerignore b/.dockerignore index 428cd08..7dd6935 100644 --- a/.dockerignore +++ b/.dockerignore @@ -3,8 +3,6 @@ *Dockerfile* *docker-compose* node_modules -jsconfig.json -tsconfig.json .eslintrc.json .DS_Store tmp diff --git a/docker/zero-ui/Dockerfile b/docker/zero-ui/Dockerfile index 24721fc..802d39d 100644 --- a/docker/zero-ui/Dockerfile +++ b/docker/zero-ui/Dockerfile @@ -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