Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Caleb Grant <[email protected]>
  • Loading branch information
geocoug committed Jul 20, 2024
1 parent b226416 commit ee52a52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ~~~~~~~~~~~
# Build stage
# ~~~~~~~~~~~
FROM python:3.11-slim as staging
FROM python:3.12-slim as staging
WORKDIR /app

ENV PYTHONDONTWRITEBYTECODE 1
Expand All @@ -18,7 +18,7 @@ RUN pip wheel --no-cache-dir --wheel-dir /app/wheels -r requirements.txt
# ~~~~~~~~~~~
# Build final
# ~~~~~~~~~~~
FROM python:3.11-slim
FROM python:3.12-slim

ENV HOME=/app
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ exclude = [
# The line length to use when enforcing long-lines violations (like E501).
line-length = 120
# Assume Python 3.11.
target-version = "py311"
target-version = "py312"
# Whether to automatically exclude files that are ignored by .ignore, .gitignore, .git/info/exclude, and global gitignore files.
respect-gitignore = true
# Default autofix behavior
Expand Down

0 comments on commit ee52a52

Please sign in to comment.