Skip to content
This repository was archived by the owner on Nov 25, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build container
FROM python:3.11-alpine as builder
FROM python:3.12-alpine as builder
WORKDIR /usr/src/app

RUN apk add --no-cache --update gcc libc-dev linux-headers alpine-sdk git libffi-dev libxml2-dev g++ gcc libxslt-dev musl-dev && rm -rf /var/cache/apk/*
Expand All @@ -16,7 +16,7 @@ COPY requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt

# main container
FROM python:3.11-alpine as runner
FROM python:3.12-alpine as runner
ENV PYTHONUNBUFFERED definitely
ENV TZ Europe/Vienna
WORKDIR /usr/src/app
Expand Down