summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 032c2aa3..92e99a7f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM fedora:29 as builder
+FROM fedora:36 as builder
RUN dnf install -y cmake gcc-c++ make libxml2-devel physfs-devel sqlite-devel \
lua-devel libsigc++20-devel
@@ -9,7 +9,7 @@ WORKDIR /source
RUN cmake . -DCMAKE_INSTALL_PREFIX=/app
RUN make install
-FROM fedora:29
+FROM fedora:36
RUN dnf update -y && \
dnf install -y libxml2 physfs sqlite lua libsigc++20 && \
dnf clean all -q && \