diff --git a/.github/workflows/docker_image_ci.yml b/.github/workflows/docker_image_ci.yml index c794f0a..0753683 100644 --- a/.github/workflows/docker_image_ci.yml +++ b/.github/workflows/docker_image_ci.yml @@ -1,6 +1,10 @@ name: Docker image CI -on: [push] +on: + push: + paths: + - setup_files/Dockerfile + - setup_files/requirements.txt jobs: build: diff --git a/setup_files/Dockerfile b/setup_files/Dockerfile index 7657b5e..d9bb73c 100644 --- a/setup_files/Dockerfile +++ b/setup_files/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.3-slim-bullseye +FROM python:3.12.0 COPY ./requirements.txt / RUN apt-get update \ && apt-get install wget libgl1-mesa-glx libglib2.0-0 --no-install-recommends -y \