Install flake8 and pip and also fix entrypoint

This commit is contained in:
Kovid Goyal 2019-01-25 11:17:48 +05:30
parent 93d2d30867
commit 81ffa7e948
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1,6 +1,6 @@
FROM ubuntu:bionic
RUN apt-get update && apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev libxcb-xkb-dev libdbus-1-dev libxkbcommon-dev libharfbuzz-dev python3
RUN apt-get update && apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev libxcb-xkb-dev libdbus-1-dev libxkbcommon-dev libharfbuzz-dev python3 python3-flake8 python3-pip
LABEL com.circleci.preserve-entrypoint=true
ENTRYPOINT python -c "import time; time.sleep(100000)"
ENTRYPOINT python3 -c "import time; time.sleep(100000)"