Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ COPY pyproject.toml poetry.lock* ./
RUN poetry install --only main --no-root && \
rm -rf ~/.cache/pypoetry ~/.cache/pip

COPY models ./models

######################## Runtime ########################
FROM python:3.11-slim

Expand All @@ -36,7 +34,6 @@ COPY --from=builder /usr/local/lib/python3.11/site-packages \
/usr/local/lib/python3.11/site-packages
COPY --from=builder /usr/local/bin /usr/local/bin
COPY src ./src
COPY --from=builder /app/models /app/models

# Kubernetes will override these with the real secrets via env.
ENV GCP_PROJECT="" \
Expand Down