mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 08:12:05 -08:00
19 lines
431 B
Docker
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"]
|