Skip to content
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,11 +1,11 @@
FROM python:3.12.0a1-alpine as builder
FROM python:3.13.0rc2-alpine as builder
COPY . /app
WORKDIR /app
RUN pip install flake8==3.8.4
RUN flake8 --ignore=E501,F401,W605 .
RUN pip wheel . --no-cache-dir --wheel-dir /usr/src/app/wheels

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