Merge branch 'main' into fix-FromAsCasing-warning

This commit is contained in:
Clement
2024-09-05 18:28:10 +02:00
committed by GitHub
12 changed files with 392 additions and 162 deletions

View File

@ -1,5 +1,7 @@
# Use an official Python runtime as the base image
FROM amd64/python:3.9-buster AS project_env
FROM python:3.11-slim AS project_env
# Install curl
RUN apt-get update && apt-get install -y curl
# Set the working directory in the container
WORKDIR /app