We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ca130b commit baa873eCopy full SHA for baa873e
Dockerfile
@@ -1,10 +1,10 @@
1
-FROM python:3.12 as build
+FROM python:3.13 as build
2
WORKDIR /opt
3
RUN python -m venv --upgrade-deps venv
4
COPY requirements requirements
5
RUN venv/bin/pip install -r requirements/base.txt
6
7
-FROM python:3.12-slim as deploy
+FROM python:3.13-slim as deploy
8
RUN useradd project
9
USER project
10
EXPOSE 8000
pyproject.toml
@@ -6,7 +6,7 @@ readme = "README.md"
license = {file = "LICENSE.txt"}
maintainers = [{name = "Pallets", email = "[email protected]"}]
classifiers = ["Private :: Do Not Upload"]
-requires-python = "~=3.12.0"
+requires-python = "~=3.13.0"
dependencies = [
11
"beautifulsoup4",
12
"feedgen",
0 commit comments