Files
python/dockerfiles/with-uv/3.12-alpine/Dockerfile
T
nyeki c24ac43964 feat(with-uv:3.12-alpine): Create new image.
Create new `with-uv:3.12-alpine` image, restructure the folders, create a pushing script to make things easier.
2025-03-15 11:47:28 -03:00

6 lines
101 B
Docker

FROM python:3.12-alpine
RUN pip install uv
ENTRYPOINT [ "python3", "-m", "uv", "run", "--no-dev" ]