Skip to content

Commit

Permalink
quotes
Browse files Browse the repository at this point in the history
Signed-off-by: Tullio Sebastiani <[email protected]>
  • Loading branch information
tsebastiani committed Jul 4, 2024
1 parent 8455e34 commit 0bbe705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ WORKDIR /home/krkn/kraken
# if it is a PR trigger the PR itself will be checked out
RUN if [ -n "$PR_NUMBER" ]; then git fetch origin pull/${PR_NUMBER}/head:pr-${PR_NUMBER} && git checkout pr-${PR_NUMBER};fi
# if it is a TAG trigger checkout the tag
RUN if [ -n "$TAG" ]; then git checkout $TAG;fi
RUN if [ -n "$TAG" ]; then git checkout "$TAG";fi

RUN python3.9 -m ensurepip
RUN pip3.9 install -r requirements.txt
Expand Down

0 comments on commit 0bbe705

Please sign in to comment.