Skip to content

Commit

Permalink
stop using 2 containers
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Sep 25, 2024
1 parent c53e279 commit 67b22f2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/actions/latest-wrangler/Dockerfile
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
FROM python:3.9-slim AS builder
FROM python:3-slim AS builder
ADD . /app
WORKDIR /app

# We are installing a dependency here directly into our app source dir
RUN pip install --target=/app requests packaging

# A distroless container image with Python and some basics like SSL certificates
# https://github.com/GoogleContainerTools/distroless
FROM gcr.io/distroless/python3.9-debian10
COPY --from=builder /app /app
WORKDIR /app
ENV PYTHONPATH /app
CMD ["/app/main.py"]

0 comments on commit 67b22f2

Please sign in to comment.