-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Zoey <[email protected]>
- 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,15 +1,11 @@ | ||
# syntax=docker/dockerfile:labs | ||
FROM python:3.12.5-alpine3.20 AS pip | ||
FROM python:3.12.5-slim-bookworm AS pip | ||
COPY requirements.txt /tmp/requirements.txt | ||
RUN apk upgrade --no-cache -a && \ | ||
apk add --no-cache ca-certificates && \ | ||
python3 -m venv /usr/local && \ | ||
RUN python3 -m venv /usr/local && \ | ||
pip install --no-cache-dir -r /tmp/requirements.txt | ||
|
||
FROM python:3.12.5-alpine3.20 | ||
FROM python:3.12.5-slim-bookworm | ||
COPY --from=pip /usr/local /usr/local | ||
RUN apk upgrade --no-cache -a && \ | ||
apk add --no-cache ca-certificates tzdata tini && \ | ||
playwright install chrome | ||
RUN playwright install chrome | ||
COPY app.py /usr/local/bin/app.py | ||
ENTRYPOINT ["tini", "--", "app.py"] |