File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 27
27
ref : master
28
28
- name : Create merge back branch
29
29
run : |
30
- echo "NEW_BRANCH=master-into-dev/${{ github.event.inputs.release_number_dev }}" >> $GITHUB_ENV
30
+ echo "NEW_BRANCH=master-into-dev/${{ github.event.inputs.release_number_dev }}/$(date +'%Y-%m-%dT%Hh%Mm%Ss') " >> $GITHUB_ENV
31
31
- name : Configure git
32
32
run : |
33
33
git config --global user.name "${{ env.GIT_USERNAME }}"
Original file line number Diff line number Diff line change 23
23
rm -rf /var/lib/apt/lists && \
24
24
true
25
25
COPY requirements.txt ./
26
- RUN pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt
26
+ RUN pip3 install --no-cache-dir --upgrade pip
27
+ RUN pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt --use-deprecated=legacy-resolver
27
28
28
29
FROM python:3.6.12-slim-buster@sha256:e5259113df5a7c4dae16ad37c2ca53b1cf722e051cfd5f624e7b76aa72389e0c
29
30
WORKDIR /app
@@ -59,7 +60,8 @@ RUN pip3 install \
59
60
--no-cache-dir \
60
61
--no-index \
61
62
--find-links=/tmp/wheels \
62
- -r ./requirements.txt
63
+ -r ./requirements.txt \
64
+ --use-deprecated=legacy-resolver
63
65
COPY \
64
66
docker/entrypoint-celery-beat.sh \
65
67
docker/entrypoint-celery-worker.sh \
Original file line number Diff line number Diff line change 20
20
rm -rf /var/lib/apt/lists && \
21
21
true
22
22
COPY requirements.txt ./
23
- RUN pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt
23
+ RUN pip3 install --no-cache-dir --upgrade pip
24
+ RUN pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt --use-deprecated=legacy-resolver
24
25
25
26
FROM build AS collectstatic
26
27
@@ -46,11 +47,13 @@ RUN \
46
47
rm -rf /var/lib/apt/lists && \
47
48
true
48
49
50
+ RUN pip3 install --no-cache-dir --upgrade pip
49
51
RUN pip3 install \
50
52
--no-cache-dir \
51
53
--no-index \
52
54
--find-links=/tmp/wheels \
53
- -r ./requirements.txt
55
+ -r ./requirements.txt \
56
+ --use-deprecated=legacy-resolver
54
57
55
58
COPY components/ ./components/
56
59
COPY manage.py ./
You can’t perform that action at this time.
0 commit comments