Skip to content

Commit

Permalink
Update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
guysoft committed Sep 30, 2023
1 parent 66c3a43 commit 4cb5e74
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
wget \
p7zip-full \
python3 \
python3-distutils \
python3-dev \
binfmt-support \
qemu \
qemu-user-static/bullseye-backports \
Expand All @@ -27,6 +29,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& apt -qyy clean

RUN wget https://bootstrap.pypa.io/get-pip.py -O - | python3
ADD requirements.txt /requirements.txt
RUN python3 -m pip install -r /requirements.txt

RUN ln -s /CustomPiOS/nightly_build_scripts/custompios_nightly_build /usr/bin/build
RUN ln -s /usr/bin/python3 /usr/bin/python

Expand Down
1 change: 1 addition & 0 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GitPython

0 comments on commit 4cb5e74

Please sign in to comment.