Files
base-images/python/Dockerfile
Luke Else be2e95de7b
Some checks failed
Build and Push Dev Containers / build (push) Failing after 24s
fix: Re-added pip
2025-09-25 21:25:28 +01:00

9 lines
151 B
Docker

FROM git.luke-else.co.uk/luke-else/base:latest
RUN apk add --no-cache \
python3 \
py3-pip
RUN pip install --no-cache-dir uv
CMD [ "uv run" ]