[gimp-web/oscp] testing.developer.gimp.org: install bzip2 and fix output dir.



commit 40685b1123005e411f3fa71a15a1ae1b5f677f88
Author: Jehan <jehan girinstud io>
Date:   Fri Aug 5 00:43:10 2022 +0200

    testing.developer.gimp.org: install bzip2 and fix output dir.
    
    Installing bzip2 should hopefully fix:
    
    > tar (child): lbzip2: Cannot exec: No such file or directory
    
    Also the root directory for generated data was still wrong. Hopefully
    now is the right one.

 testing.developer.gimp.org/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/testing.developer.gimp.org/Dockerfile b/testing.developer.gimp.org/Dockerfile
index d925a9a2..6de3c0a3 100644
--- a/testing.developer.gimp.org/Dockerfile
+++ b/testing.developer.gimp.org/Dockerfile
@@ -2,7 +2,7 @@ FROM debian:unstable
 USER root
 
 RUN apt update
-RUN apt install -y git-core hugo make wget
+RUN apt install -y bzip2 git-core hugo make wget
 
 RUN git clone --depth 1 --branch hugo https://gitlab.gnome.org/Infrastructure/gimp-web-devel && \
     cd gimp-web-devel && \
@@ -14,7 +14,7 @@ FROM registry.access.redhat.com/ubi9/httpd-24
 
 USER 0
 ADD app_data /tmp/src
-COPY --from=0 /public /tmp/src
+COPY --from=0 /gimp-web-devel/public /tmp/src
 RUN chown -R 1001:0 /tmp/src
 
 USER 1001


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]