diff options
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 && \ |