Skip to content

Commit cd09e5d

Browse files
committed
Avoid collision with build artifacts
1 parent bebecd3 commit cd09e5d

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ __pycache__/
1717

1818
# Distribution / packaging
1919
.Python
20+
build/
2021
develop-eggs/
2122
dist/
2223
downloads/
@@ -197,6 +198,9 @@ coverage/
197198
/src/ui/.next/
198199
/src/ui/out/
199200

201+
# production
202+
build/
203+
200204
# misc
201205
*.pem
202206

build/Containerfile renamed to deploy/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN python3 -m venv /opt/guidellm \
1111
&& /opt/guidellm/bin/pip install --no-cache-dir /src
1212

1313
# Copy entrypoint script into the venv bin directory
14-
RUN install -m0755 /src/build/entrypoint.sh /opt/guidellm/bin/entrypoint.sh
14+
RUN install -m0755 /src/deploy/entrypoint.sh /opt/guidellm/bin/entrypoint.sh
1515

1616
# Prod image
1717
FROM docker.io/python:${PYTHON}-slim
File renamed without changes.

0 commit comments

Comments
 (0)