Create new `with-uv:3.12-alpine` image, restructure the folders, create a pushing script to make things easier.
6 lines
101 B
Docker
6 lines
101 B
Docker
FROM python:3.12-alpine
|
|
|
|
RUN pip install uv
|
|
|
|
ENTRYPOINT [ "python3", "-m", "uv", "run", "--no-dev" ]
|