Skip to content

Commit

Permalink
ci: Fix paths to requirements files in Dockerfiles (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
xeniape authored Oct 16, 2024
1 parent dc7549d commit 1a41f37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM docker.stackable.tech/stackable/pyspark-k8s:3.4.0-stackable23.7.0

COPY requirements.txt .
COPY demos/jupyterhub-pyspark-hdfs-anomaly-detection-taxi-data/requirements.txt .

RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r ./requirements.txt
2 changes: 1 addition & 1 deletion demos/signal-processing/Dockerfile-jupyter
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM jupyter/pyspark-notebook:python-3.9

COPY requirements.txt .
COPY demos/signal-processing/requirements.txt .

RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r ./requirements.txt

0 comments on commit 1a41f37

Please sign in to comment.