Skip to content

Commit

Permalink
changed to alpine base image
Browse files Browse the repository at this point in the history
  • Loading branch information
jakegodsall committed Dec 5, 2024
1 parent 735c4a8 commit 2556060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/docker/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
########################################
# Builder stage
########################################
FROM --platform=linux/arm64 python:3.13-slim-bullseye AS builder
FROM --platform=linux/arm64 python:3.9-alpine AS builder

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down Expand Up @@ -42,7 +42,7 @@ ENV DJANGO_SETTINGS_MODULE=portfolio_site.settings.production
########################################
# Final Runtime Stage
########################################
FROM --platform=linux/arm64 python:3.13-slim-bullseye
FROM --platform=linux/arm64 python:3.9-alpine

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1 \
Expand Down

0 comments on commit 2556060

Please sign in to comment.