Skip to content

Commit

Permalink
Update base image in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kmille committed Nov 22, 2024
1 parent 77ab65d commit def7512
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.11-alpine3.19 AS builder
FROM python:3.12-alpine3.20 AS builder
RUN pip install poetry
COPY . /app
WORKDIR /app
RUN poetry build --format=wheel


FROM python:3.11-alpine3.18
FROM python:3.12-alpine3.20
ENV PYTHONUNBUFFERED=TRUE

RUN apk add --no-cache ffmpeg && \
Expand Down

0 comments on commit def7512

Please sign in to comment.