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 dc48cc7 commit e789036
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir pybind11
RUN pip install --no-cache-dir jupyterlab

RUN python -m pip install --force-reinstall ../CarnaPy*.whl
COPY ../CarnaPy*.whl /tmp/carnapy/
RUN python -m pip install --force-reinstall /tmp/carnapy/CarnaPy*.whl
RUN rm -rf /tmp/carnapy

EXPOSE 8890
CMD ['jupyter', 'lab', '--port', '8890']
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@ jobs:
id: setup_repository_name
run: |
echo "docker_repository=${GITHUB_REPOSITORY,,}" >> $GITHUB_OUTPUT
-
name: Inspect directory structure
run: tree .
-
name: Build and push
uses: docker/build-push-action@v5
Expand Down

0 comments on commit e789036

Please sign in to comment.