From e6e7f00f4c7cc87725540aa4818b89212ac7f60e Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Mon, 19 Feb 2024 11:17:03 +0000 Subject: [PATCH] Bump container version and PyYAML version --- Dockerfile | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1fceb50..4a935da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-alpine +FROM python:3.12-alpine COPY ./requirements.txt /app/requirements.txt RUN [ "pip", "install", "-r", "/app/requirements.txt" ] COPY ./src /app/src diff --git a/requirements.txt b/requirements.txt index 952ef5a..9a3cc68 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,6 +4,6 @@ dnspython==2.3.0 idna==3.4 pyaml==21.10.1 pymongo==4.3.3 -PyYAML==6.0 +PyYAML==6.0.1 requests==2.28.2 urllib3==1.26.14