Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #46 from steersbob/feature/python-3.11
Browse files Browse the repository at this point in the history
dependency bump
  • Loading branch information
steersbob committed Sep 13, 2023
2 parents 4969e50 + 4b4ddc7 commit 1630297
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 233 deletions.
5 changes: 1 addition & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"python.defaultInterpreterPath": ".venv/bin/python",
"python.terminal.activateEnvInCurrentTerminal": true,
"python.terminal.activateEnvironment": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.testing.pytestArgs": [
"--no-cov",
"."
Expand All @@ -13,6 +11,5 @@
"python.languageServer": "Pylance",
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"python.formatting.provider": "none"
}
}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-bullseye as base
FROM python:3.11-bookworm as base

COPY ./dist /app/dist

Expand All @@ -11,7 +11,7 @@ RUN set -ex \
&& pip3 wheel --wheel-dir=/wheeley -r /app/dist/requirements.txt \
&& pip3 wheel --wheel-dir=/wheeley /app/dist/*.tar.gz

FROM python:3.9-slim-bullseye
FROM python:3.11-slim-bookworm
EXPOSE 5000
WORKDIR /app

Expand Down
Loading

0 comments on commit 1630297

Please sign in to comment.