Skip to content

Commit

Permalink
Hotfix/try fix build (#11)
Browse files Browse the repository at this point in the history
* troubleshoot dockerfile

* another try

* anooother try

* last try, hopefully
  • Loading branch information
azuur authored Feb 1, 2024
1 parent 26a50f7 commit fb3bb06
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ RUN groupadd -g "${GID}" python \
&& useradd --create-home --no-log-init -u "${UID}" -g "${GID}" python \
&& chown python:python -R /package

COPY --from=build /dist/*.whl /package/dist/.
RUN pip install /package/dist/*.whl
# For some reason copying to /package/dist/. doesn't work on AWS
COPY --from=build /dist/*.whl /package/.
RUN pip install *.whl

USER python

0 comments on commit fb3bb06

Please sign in to comment.