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