Skip to content
Closed
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,4 +1,4 @@
FROM python:3.12.5-alpine3.19 as BUILD
FROM python:3.12.6-alpine3.19 as BUILD

RUN apk add --update \
&& apk add --no-cache --virtual build-base libressl-dev libffi-dev gcc musl-dev python3-dev \
Expand All @@ -9,7 +9,7 @@ COPY requirements.txt /root/requirements.txt
RUN pip install --upgrade pip && \
pip install -r /root/requirements.txt

FROM python:3.12.5-alpine3.19
FROM python:3.12.6-alpine3.19

RUN apk add --no-cache --update bash

Expand Down