Skip to content
Snippets Groups Projects

Update to Python 3.12

Merged David Hoese requested to merge update-deps into main
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
2
FROM python:3.11-slim AS compile-image
FROM python:3.12-slim AS compile-image
RUN apt-get update
RUN apt-get install -y --no-install-recommends git
# We're only using the root user, pip shouldn't warn about it
@@ -16,7 +16,7 @@ COPY .git/ .git/
COPY geosphere_api/ geosphere_api/
RUN pip install --user . -r requirements.txt
FROM python:3.11-slim AS build-image
FROM python:3.12-slim AS build-image
COPY --from=compile-image /root/.local /root/.local
# Make sure scripts in .local are usable:
Loading