Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #32 from benblamey/main
Browse files Browse the repository at this point in the history
Use git+https:// for pip installation in Dockerfiles
  • Loading branch information
ahellander authored May 10, 2022
2 parents 72cfe5e + 84c03bf commit b0b9972
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Casa-IoT-keras/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.8.9
COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
RUN pip install -e git://github.com/scaleoutsystems/fedn.git@develop#egg=fedn\&subdirectory=fedn
RUN pip install -e git+https://github.com/scaleoutsystems/fedn.git@develop#egg=fedn\&subdirectory=fedn



2 changes: 1 addition & 1 deletion imdb-keras/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ FROM python:3.8.9
COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
RUN pip install -e git://github.com/scaleoutsystems/fedn.git#egg=fedn\&subdirectory=fedn
RUN pip install -e git+https://github.com/scaleoutsystems/fedn.git#egg=fedn\&subdirectory=fedn

0 comments on commit b0b9972

Please sign in to comment.