Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kostrykin committed Dec 13, 2023
1 parent fba55bb commit 0006721
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir pybind11
RUN pip install --no-cache-dir jupyterlab

RUN echo $CWD
RUN echo $(ls -al .)
RUN mkdir -p /tmp/carnapy
COPY ../CarnaPy-0.1.6-cp310-cp310-linux_x86_64.whl /tmp/carnapy/
COPY CarnaPy-0.1.6-cp310-cp310-linux_x86_64.whl /tmp/carnapy/
RUN ls -al /tmp/carnapy
RUN python -m pip install --force-reinstall $(find /tmp/carnapy -name '*.whl')
RUN rm -rf /tmp/carnapy
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,6 @@ jobs:
uses: docker/build-push-action@v5
with:
file: .github/Dockerfile
context: .
push: true
tags: ${{ steps.setup_repository_name.outputs.docker_repository }}:${{ github.ref_name }}

0 comments on commit 0006721

Please sign in to comment.