diff options
-rw-r--r-- | Dockerfile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -10,6 +10,9 @@ RUN cmake . -DCMAKE_INSTALL_PREFIX=/app RUN make install FROM fedora:29 -RUN dnf update -y -RUN dnf install -y libxml2 physfs sqlite lua libsigc++20 +RUN dnf update -y && \ + dnf install -y libxml2 physfs sqlite lua libsigc++20 && \ + dnf clean all -q && \ + rm -rf /var/cache/dnf/* + COPY --from=builder /app/ /app/ |