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,4 +1,4 @@
FROM python:3-alpine as base
FROM python:3.11.0a5-alpine as base

RUN mkdir /install

Expand All @@ -8,7 +8,7 @@ COPY requirements.txt /requirements.txt

RUN pip install --prefix=/install -r /requirements.txt

FROM python:3-alpine
FROM python:3.11.0a5-alpine

COPY --from=base /install /usr/local

Expand Down