From af705ee7dfdef7843a0d169c525f41199da1a3d5 Mon Sep 17 00:00:00 2001 From: oneflux Date: Mon, 21 Apr 2025 21:10:05 -0700 Subject: [PATCH] remove Dockerfile --- Dockerfile | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index c9b49a6..0000000 --- a/Dockerfile +++ /dev/null @@ -1,32 +0,0 @@ -FROM ubuntu:latest - -WORKDIR /app - -# Copy the current directory into the container at /app -COPY . /app - -# Install necessary packages -RUN apt-get update && apt-get install -y \ - # Mach build tools - build-essential make msitools wget unzip rustc \ - # Python - python3 python3-dev python3-pip \ - # Camoufox build system tools - git p7zip-full golang-go aria2 curl rsync \ - # CA certificates - ca-certificates \ - && update-ca-certificates - -RUN curl https://sh.rustup.rs -sSf | bash -s -- -y -ENV PATH="/root/.cargo/bin:${PATH}" - -# Fetch Firefox & apply initial patches -RUN make setup-minimal && \ - make mozbootstrap && \ - mkdir -p /app/dist - -# Mount .mozbuild directory and dist folder -VOLUME /root/.mozbuild -VOLUME /app/dist - -ENTRYPOINT ["python3", "./multibuild.py"] \ No newline at end of file