Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
fix dockerfile build
Browse files Browse the repository at this point in the history
Fixes #25
  • Loading branch information
ReenigneArcher committed Oct 7, 2022
1 parent 3c1c657 commit 5f13f7a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ WORKDIR /build/
# copy repo
COPY . .

RUN python # update pip \
RUN python '# update pip' \
-m pip --no-python-version-warning --disable-pip-version-check install --upgrade pip==20.3.4 setuptools \
&& python -m pip install --upgrade -r requirements-dev.txt # install dev requirements \
&& python ./scripts/install_requirements.py # install plugin requirements \
&& python ./scripts/build_plist.py # build plist \
&& rm -r ./scripts/ # remove scripts dir
&& python -m pip install --upgrade -r requirements-dev.txt '# install dev requirements' \
&& python ./scripts/install_requirements.py '# install plugin requirements' \
&& python ./scripts/build_plist.py '# build plist' \
&& rm -r ./scripts/ '# remove scripts dir'

# single layer deployed image
FROM scratch
Expand Down

0 comments on commit 5f13f7a

Please sign in to comment.