Skip to content
This repository was archived by the owner on Jan 12, 2024. 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,4 +1,4 @@
FROM python:3.12.0b1-alpine as builder
FROM python:3.13.0a1-alpine as builder
COPY . /app
WORKDIR /app
RUN pip install flake8==3.8.4
Expand All @@ -7,7 +7,7 @@ RUN apk add --no-cache --virtual .build-deps gcc musl-dev libffi-dev openssl-dev
RUN pip wheel . --no-cache-dir --wheel-dir /usr/src/app/wheels
RUN apk del .build-deps gcc musl-dev

FROM python:3.12.0b1-alpine
FROM python:3.13.0a1-alpine
ENV PYTHONUNBUFFERED 1
COPY --from=builder /usr/src/app/wheels /wheels
RUN pip install --no-cache /wheels/* \
Expand Down