Skip to content

Commit

Permalink
Add pyinstaller script to Docker build
Browse files Browse the repository at this point in the history
Signed-off-by: Trevor Wood <[email protected]>
  • Loading branch information
taharah committed Sep 16, 2019
1 parent 89edb36 commit e8d4d5f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile.pyinstaller
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ WORKDIR /kapitan
COPY ./kapitan ./kapitan
COPY ./MANIFEST.in ./MANIFEST.in
COPY ./requirements.txt ./requirements.txt
COPY ./scripts/pyinstaller.sh ./pyinstaller.sh
COPY ./setup.py ./setup.py

RUN chmod +x ./kapitan/inputs/helm/build.sh \
Expand All @@ -31,6 +32,6 @@ RUN apt-get update \
&& pip install pyinstaller==$PYINSTALLER_VERSION \
&& pip install -r requirements.txt \
&& ./kapitan/inputs/helm/build.sh \
&& chmod +x ./scripts/pyinstaller.sh
&& chmod +x ./pyinstaller.sh

ENTRYPOINT ["./scripts/pyinstaller.sh"]
ENTRYPOINT ["./pyinstaller.sh"]

0 comments on commit e8d4d5f

Please sign in to comment.