Skip to content

Commit 5ea34e5

Browse files
committed
fixed url to branch pyeed
1 parent 75f27f4 commit 5ea34e5

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/release_compose.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/release_image.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
- name: Build and push Docker image
2828
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
2929
with:
30-
context: .
31-
file: ./jupyterlab/Dockerfile
30+
context: /jupyterlab
31+
file: ./Dockerfile
3232
push: true
3333
tags: ${{ steps.meta.outputs.tags }}
3434
labels: ${{ steps.meta.outputs.labels }}

jupyterlab/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM jupyter/datascience-notebook
22

33
# Copy the scripts into the container and set them as executable in one step
4-
COPY --chmod=+x /jupyterlab/startup-script.sh /usr/local/bin/startup-script.sh
5-
COPY --chmod=+x /jupyterlab/update_packages.py /usr/local/bin/update_packages.py
4+
COPY --chmod=+x startup-script.sh /usr/local/bin/startup-script.sh
5+
COPY --chmod=+x update_packages.py /usr/local/bin/update_packages.py
66

77
USER root
88

jupyterlab/startup-script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Download the latest requirements.txt from GitHub
44
echo "Downloading latest requirements.txt from GitHub..."
5-
curl -o /tmp/requirements.txt -L https://raw.githubusercontent.com/PyEED/PyEED_JupyterLab/fixing-docker-new-pyeed/requirements.txt
5+
curl -o /tmp/requirements.txt -L https://raw.githubusercontent.com/PyEED/PyEED_JupyterLab/main/requirements.txt
66

77
# Update packages based on requirements.txt
88
echo "Checking for package updates..."

0 commit comments

Comments
 (0)