-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change base docker image to python3-slim
- Loading branch information
Showing
1 changed file
with
4 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
FROM python:3-slim AS builder | ||
ADD . /app | ||
FROM python:3.13-slim | ||
Check failure on line 1 in Dockerfile Wiz Inc. (5a6b51938d) / Wiz IaC ScannerMissing User Instruction
Raw output
Check notice on line 1 in Dockerfile Wiz Inc. (5a6b51938d) / Wiz IaC ScannerHealthcheck Instruction Missing
Raw output
|
||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
||
# We are installing a dependency here directly into our app source dir | ||
RUN pip install --target=/app -r requirements.txt | ||
|
||
# A distroless container image with Python and some basics like SSL certificates | ||
# https://github.com/GoogleContainerTools/distroless | ||
FROM gcr.io/distroless/python3-debian10 | ||
COPY --from=builder /app /app | ||
WORKDIR /app | ||
ENV PYTHONPATH /app | ||
CMD ["/app/main.py"] | ||
CMD ["python", "/app/main.py"] |