Skip to content

Commit d725a21

Browse files
committed
Fix action
1 parent 1ddff1d commit d725a21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ ENV DEBIAN_FRONTEND noninteractive
99
ENV PATH="/root/.local/bin:${PATH}"
1010

1111

12-
RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y \
12+
RUN apt-get update && apt-get install -y \
1313
ca-certificates python3 python3-pip libgl1-mesa-dev libglib2.0-0 libsm6 libxrender1 libxext6 nano vim htop && \
1414
rm -rf /var/lib/apt/lists/*
1515

1616
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1
1717
RUN update-alternatives --install /usr/local/bin/pip pip /usr/bin/pip3 1
1818

1919
RUN apt-get install -y build-essential && \
20-
pip install --no-cache-dir $PIP_FLAGS superannotate && \
20+
pip install --no-cache-dir ${PIP_FLAGS} superannotate && \
2121
apt-get remove -y build-essential && \
2222
apt-get -y autoremove && \
2323
rm -rf /root/.cache/pip && \

0 commit comments

Comments
 (0)