py312-fix
Some checks failed
deploy to v2 / test (push) Failing after 2m36s
deploy to v2 / deploy (push) Has been skipped

This commit is contained in:
Untone 2024-02-15 12:26:17 +03:00
parent 25bdca1371
commit 7a3f823804

View File

@ -1,5 +1,5 @@
# Use an official Python runtime as a parent image # Use an official Python runtime as a parent image
FROM python:slim FROM python:3.12-slim
# Set the working directory in the container to /app # Set the working directory in the container to /app
WORKDIR /app WORKDIR /app
@ -19,4 +19,4 @@ RUN apt-get update && apt-get install -y gcc curl && \
poetry install --no-dev poetry install --no-dev
# Run server.py when the container launches # Run server.py when the container launches
CMD ["python", "server.py"] CMD ["python", "server.py"]