Fri Feb 24 02:27:47 PM CET 2023
This commit is contained in:
parent
420f1540b7
commit
0bd5407d46
1 changed files with 12 additions and 1 deletions
|
|
@ -1,4 +1,9 @@
|
||||||
FROM ubuntu:jammy
|
FROM ubuntu:jammy
|
||||||
|
|
||||||
|
#
|
||||||
|
# It's probably totally unnecesary to include all of these dependencies.
|
||||||
|
#
|
||||||
|
|
||||||
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install make wget git patch bash vim mc screen automake autoconf libtool build-essential
|
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install make wget git patch bash vim mc screen automake autoconf libtool build-essential
|
||||||
RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install \
|
RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install \
|
||||||
apt-utils \
|
apt-utils \
|
||||||
|
|
@ -49,11 +54,17 @@ RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install \
|
||||||
zip \
|
zip \
|
||||||
zstd
|
zstd
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# This is the interesting part of the Dockerfile
|
||||||
|
#
|
||||||
|
|
||||||
RUN git clone --recursive https://gitlab.com/librewolf-community/browser/windows.git
|
RUN git clone --recursive https://gitlab.com/librewolf-community/browser/windows.git
|
||||||
WORKDIR windows/linux
|
WORKDIR windows/linux
|
||||||
RUN pwd && ls -l
|
|
||||||
|
|
||||||
RUN make setup-debian
|
RUN make setup-debian
|
||||||
|
RUN make upstream-update
|
||||||
RUN make fetch-archive
|
RUN make fetch-archive
|
||||||
RUN make extract-arch
|
RUN make extract-arch
|
||||||
RUN make old-style-bootstrap-arch
|
RUN make old-style-bootstrap-arch
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue