Skip to content

Commit e987b3f

Browse files
committed
container: update to fedora 42
Update to a maintained version of Fedora as the base image. Signed-off-by: Simon de Vlieger <[email protected]>
1 parent d3d3da2 commit e987b3f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: Containerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM registry.fedoraproject.org/fedora-minimal:38 AS base
1+
FROM registry.fedoraproject.org/fedora-minimal:41 AS base
22

33
RUN \
4-
microdnf install -y \
4+
dnf install -y \
55
python3-pip && \
6-
microdnf clean all
6+
dnf clean all
77

88
WORKDIR /usr/app
99

@@ -34,9 +34,9 @@ CMD ["venv/bin/python3", "-m", "pinnwand", "http"]
3434
FROM base AS mysql
3535
WORKDIR /usr/app
3636
RUN \
37-
microdnf install -y \
37+
dnf install -y \
3838
community-mysql-devel python3-devel gcc && \
39-
microdnf clean all
39+
dnf clean all
4040

4141
COPY --from=base /usr/app ./
4242
RUN venv/bin/pip install mysqlclient

0 commit comments

Comments
 (0)