omegafox/Dockerfile
2024-07-27 11:25:41 -05:00

17 lines
398 B
Docker

FROM python:3.11-slim-bullseye
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install necessary packages
RUN apt-get update && apt-get install -y \
# Makefile utils
build-essential make git msitools wget unzip \
# Camoufox build system utils
p7zip-full golang-go
RUN make fetch && make mozbootstrap
ENTRYPOINT ["python3", "./multibuild.py"]