Skip to content

Commit e5b0de4

Browse files
committed
need git
1 parent 4b58024 commit e5b0de4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
- name: Lint
1515
run: |
1616
pip install flake8
17-
flake8 --ignore E501 src/
17+
flake8 --ignore E501,E402 src/

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV PYTHONDONTWRITEBYTECODE 1
66
WORKDIR /app
77
# We are installing a dependency
88
ADD requirements.txt /app/requirements.txt
9-
RUN apk add --no-cache g++ zlib-dev make && pip3 install -r /app/requirements.txt
9+
RUN apk add --no-cache g++ zlib-dev make git && pip3 install -r /app/requirements.txt
1010

1111
ADD src/* /app/
1212
ENV PYTHONPATH /app

0 commit comments

Comments
 (0)