Skip to content

Commit 40ea7f7

Browse files
authored
Add git to Dockerfile
Added Git to Dockerfile to allow python requirements.txt to install dependencies from git repositories (e.g. local or private packages)
1 parent 6f61dfd commit 40ea7f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3
22

3-
RUN apk --update --no-cache add nodejs nodejs-npm python3 py3-pip jq curl bash && \
3+
RUN apk --update --no-cache add nodejs nodejs-npm python3 py3-pip jq curl bash git && \
44
ln -sf /usr/bin/python3 /usr/bin/python
55

66
COPY entrypoint.sh /entrypoint.sh

0 commit comments

Comments
 (0)