Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions geti-pipeline/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
########################################################################

FROM python:3.9-bullseye
RUN apt-get update && apt-get install --no-install-recommends ffmpeg=7:4.3.7-0+deb11u1 libsm6=2:1.2.3-1 libxext6=2:1.3.3-1.1 -y \
RUN apt-get update && apt-get install --no-install-recommends ffmpeg=7:4.3.8-0+deb11u1 libsm6=2:1.2.3-1 libxext6=2:1.3.3-1.1 -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY . .
WORKDIR /example_code
RUN python -m pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1
EXPOSE 8080
CMD ["python", "demo.py"]
CMD ["python", "demo.py"]
Loading