File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed
Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 3333 password : ${{ secrets.DOCKER_PASSWORD }}
3434 repository : superannotate/pythonsdk
3535 tag_with_ref : true
36+ file : ./Dockerfile_prerelease
Original file line number Diff line number Diff line change 1+ FROM ubuntu:20.04
2+ ENV LANG C.UTF-8
3+
4+ SHELL ["/bin/bash", "-c"]
5+
6+ ENV DEBIAN_FRONTEND noninteractive
7+ ENV PATH="/root/.local/bin:${PATH}"
8+
9+
10+ RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y \
11+ ca-certificates python3 python3-pip libgl1-mesa-dev libglib2.0-0 libsm6 libxrender1 libxext6 nano vim htop && \
12+ rm -rf /var/lib/apt/lists/*
13+
14+ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1
15+ RUN update-alternatives --install /usr/local/bin/pip pip /usr/bin/pip3 1
16+
17+ RUN apt-get install -y build-essential && \
18+ pip install --no-cache-dir --pre superannotate && \
19+ apt-get remove -y build-essential && \
20+ apt-get -y autoremove && \
21+ rm -rf /root/.cache/pip && \
22+ rm -rf /var/lib/apt/lists/*
23+
24+ CMD ["/bin/bash"]
Original file line number Diff line number Diff line change 1- __version__ = "3.0.0b2 "
1+ __version__ = "3.0.0b3 "
You can’t perform that action at this time.
0 commit comments