Skip to content

Commit

Permalink
Fix notebook_test_dockerfile_content
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Mar 1, 2024
1 parent f866226 commit d530b79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def notebook_test_dockerfile_content(dss_docker_image) -> str:
f"""
FROM {dss_docker_image.image_name}
COPY notebooks/* /tmp/notebooks/
RUN mv /tmp/notebooks/* "$NOTEBOOK_FOLDER_INITIAL" && rmdir /tmp/notebooks/
RUN cp -r /tmp/notebooks/* "$NOTEBOOK_FOLDER_INITIAL"
WORKDIR $NOTEBOOK_FOLDER_INITIAL
RUN "$VIRTUAL_ENV/bin/python3" -m pip install -r test_dependencies.txt
"""
Expand Down

0 comments on commit d530b79

Please sign in to comment.