forked from flathub/flathub
-
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.
merge: Rewrite Dockerfile to use python:3.12
- Loading branch information
1 parent
1368361
commit c6bf572
Showing
1 changed file
with
21 additions
and
7 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,10 +1,24 @@ | ||
FROM quay.io/fedora/fedora:38 | ||
FROM python:3.12 AS builder | ||
|
||
RUN dnf install -y flatpak-builder git /usr/bin/pip && \ | ||
dnf clean all | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
libcairo2-dev libgirepository1.0-dev | ||
|
||
ADD requirements.txt /requirements.txt | ||
RUN pip install -r /requirements.txt | ||
ADD requirements.txt . | ||
|
||
ADD entrypoint.py /entrypoint.py | ||
ENTRYPOINT ["/entrypoint.py"] | ||
RUN python -m venv /venv && \ | ||
/venv/bin/python -m pip install -r requirements.txt | ||
|
||
FROM python:3.12-slim | ||
ENV PATH="/venv/bin:$PATH" | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
libcairo2 libgirepository-1.0-1 gir1.2-json-1.0 && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
COPY --from=builder /venv /venv | ||
COPY . /app | ||
WORKDIR /app | ||
|
||
CMD ["/app/entrypoint.py"] |