Skip to content

Commit a32650c

Browse files
committed
simplify package install lines
1 parent 024b45d commit a32650c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ RUN apt-get update \
2020
&& apt-get -y install sudo python3-pip python3-evdev \
2121
&& apt-get clean && rm -rf /var/lib/apt/lists/* \
2222
&& python3 -m venv ${VENV_HOME} \
23-
&& ${VENV_HOME}/bin/pip install --upgrade pip \
23+
&& ${VENV_HOME}/bin/pip install --upgrade pip setuptools \
2424
&& ${VENV_HOME}/bin/pip install "poetry==${POETRY_VERSION}" \
25-
&& ${VENV_HOME}/bin/pip install "setuptools" \
2625
&& ${VENV_HOME}/bin/poetry check \
2726
&& POETRY_VIRTUALENVS_CREATE=false ${VENV_HOME}/bin/poetry install --no-interaction --no-cache --only main \
2827
&& ${VENV_HOME}/bin/pip uninstall -y poetry

0 commit comments

Comments
 (0)