We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91687a5 commit a16b944Copy full SHA for a16b944
1 file changed
build/Dockerfile.videxserver
@@ -12,7 +12,13 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
12
WORKDIR /opt/videx
13
14
COPY requirements.txt /opt/videx/requirements.txt
15
-RUN pip install -r /opt/videx/requirements.txt
+RUN apt-get update \
16
+ && apt-get install -y --no-install-recommends \
17
+ gcc \
18
+ python3-dev \
19
+ && pip install -r /opt/videx/requirements.txt \
20
+ && apt-get purge -y --auto-remove gcc python3-dev \
21
+ && rm -rf /var/lib/apt/lists/*
22
23
COPY src/ /opt/videx/src/
24
COPY build/videx_container_entrypoint.py /opt/videx/videx_container_entrypoint.py
0 commit comments