omegafox/Dockerfile
2024-07-27 18:10:37 -05:00

19 lines
431 B
Docker

FROM ubuntu:latest
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 \
# Python
python3 python3-dev python3-pip \
# Camoufox build system utils
p7zip-full golang-go
RUN make fetch && make mozbootstrap
ENTRYPOINT ["python3", "./multibuild.py"]