From ef6a54509f863db9bd5f1bfc65a2a110c6e6b920 Mon Sep 17 00:00:00 2001 From: Paulius Gerve Date: Fri, 28 Feb 2025 10:03:02 +0200 Subject: [PATCH] Dockerfile fixes --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index dcf5310..c9b49a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \ # Python python3 python3-dev python3-pip \ # Camoufox build system tools - git p7zip-full golang-go aria2 curl \ + git p7zip-full golang-go aria2 curl rsync \ # CA certificates ca-certificates \ && update-ca-certificates @@ -23,10 +23,10 @@ ENV PATH="/root/.cargo/bin:${PATH}" # Fetch Firefox & apply initial patches RUN make setup-minimal && \ make mozbootstrap && \ - mkdir /app/dist + mkdir -p /app/dist # Mount .mozbuild directory and dist folder VOLUME /root/.mozbuild VOLUME /app/dist -ENTRYPOINT ["python3", "./multibuild.py"] +ENTRYPOINT ["python3", "./multibuild.py"] \ No newline at end of file