Skip to content

Commit baa873e

Browse files
committed
update python
1 parent 2ca130b commit baa873e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM python:3.12 as build
1+
FROM python:3.13 as build
22
WORKDIR /opt
33
RUN python -m venv --upgrade-deps venv
44
COPY requirements requirements
55
RUN venv/bin/pip install -r requirements/base.txt
66

7-
FROM python:3.12-slim as deploy
7+
FROM python:3.13-slim as deploy
88
RUN useradd project
99
USER project
1010
EXPOSE 8000

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
license = {file = "LICENSE.txt"}
77
maintainers = [{name = "Pallets", email = "[email protected]"}]
88
classifiers = ["Private :: Do Not Upload"]
9-
requires-python = "~=3.12.0"
9+
requires-python = "~=3.13.0"
1010
dependencies = [
1111
"beautifulsoup4",
1212
"feedgen",

0 commit comments

Comments
 (0)