Skip to content

Commit b74742e

Browse files
author
Tony Crisci
committed
freeze dockerfile pip dependencies
1 parent f97900e commit b74742e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ RUN export DEBIAN_FRONTEND=noninteractive; \
2626
dbus \
2727
python3-gi
2828

29-
RUN pip3 install yapf flake8 && \
29+
RUN pip3 install 'yapf==0.31' 'flake8==4.0.1' && \
3030
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
3131
for py in python3 python3.6 python3.7 python3.9 python3.10; do \
3232
${py} get-pip.py; \
3333
PYTHONPATH=/usr/lib/${py}/site-packages ${py} -m pip install \
34-
pytest \
35-
pytest-asyncio \
36-
pytest-timeout \
37-
pytest-cov; \
34+
'pytest==6.2.5' \
35+
'pytest-asyncio==0.16.0' \
36+
'pytest-timeout==2.0.2' \
37+
'pytest-cov==3.0.0'; \
3838
done
3939

4040
ADD . /app

0 commit comments

Comments
 (0)