Skip to content

Commit

Permalink
fixes syntax error in dockerfile #679 (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankJonasmoelle authored Aug 29, 2024
1 parent 491b4c4 commit 4f501f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN mkdir -p /app \
# Install FEDn and requirements
&& python -m venv /venv \
&& /venv/bin/pip install --upgrade pip \
&& /venv/bin/pip install --no-cache-dir setuptools>=65 \
&& /venv/bin/pip install --no-cache-dir 'setuptools>=65' \
&& /venv/bin/pip install --no-cache-dir -e . \
&& if [[ ! -z "$REQUIREMENTS" ]]; then \
/venv/bin/pip install --no-cache-dir -r /app/config/requirements.txt; \
Expand Down

0 comments on commit 4f501f0

Please sign in to comment.