Skip to content

Commit

Permalink
Dockerifle: Update to python 3.11
Browse files Browse the repository at this point in the history
Python 3.7 is already in EOL. We should move to a new version.

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
  • Loading branch information
patrickelectric committed Dec 12, 2023
1 parent 5a43b1b commit 37f3919
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,12 +1,12 @@
FROM python:3.9-slim-bullseye AS build_gstreamer
FROM python:3.11.7-slim-bullseye AS build_gstreamer

# Build and Pre-Install Gstreamer
COPY ./scripts/build_gst.sh /build_gst.sh
RUN GST_VERSION=1.22.3 LIBCAMERA_VERSION=v0.0.4 \
./build_gst.sh && rm /build_gst.sh


FROM python:3.9-slim-bullseye AS main
FROM python:3.11.7-slim-bullseye AS main


# Setup the user environment
Expand Down

0 comments on commit 37f3919

Please sign in to comment.