Skip to content

Commit bcfb051

Browse files
authored
fix(docker): Remove tsconfig.node.json from Distroless Dockerfile (#199)
remove tsconfig.node.json Co-authored-by: phildum <>
1 parent 710d237 commit bcfb051

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

deploy/docker/run/Dockerfile.distroless

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ RUN apt-get install -y --no-install-recommends build-essential curl \
5252
## -------------------------- install application ----------------------------------- ##
5353
WORKDIR /workspace/app
5454
COPY pyproject.toml uv.lock README.md .pre-commit-config.yaml LICENSE Makefile \
55-
package.json package-lock.json vite.config.ts tsconfig.json tsconfig.node.json \
55+
package.json package-lock.json vite.config.ts tsconfig.json \
5656
tailwind.config.cjs postcss.config.cjs components.json \
5757
./
5858
RUN python -m venv --copies /workspace/app/.venv \

docker-compose.override.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ x-development-volumes: &development-volumes
77
- ./pyproject.toml:/workspace/app/pyproject.toml
88
- ./uv.lock:/workspace/app/uv.lock
99
- ./tsconfig.json:/workspace/app/tsconfig.json
10-
- ./tsconfig.node.json:/workspace/app/tsconfig.node.json
1110
- ./package.json:/workspace/app/package.json
1211
- ./package-lock.json:/workspace/app/package-lock.json
1312
- ./vite.config.ts:/workspace/app/vite.config.ts

0 commit comments

Comments
 (0)