Update Dockerfile

This commit is contained in:
Ilia Eriomenco 2024-10-30 21:17:57 +02:00 committed by GitHub
parent c7bbd0119f
commit 5f356451ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Install the base requirements for the app.
# This stage is to support development.
FROM --platform=$BUILDPLATFORM python:alpine AS base
FROM --platform=$BUILDPLATFORM python:3.12-alpine AS base
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt