Spaces:
Sleeping
Sleeping
Daniel Ecer commited on
Commit ·
f7cc93d
1
Parent(s): 24ce2c2
Attempting to use regular Python base image
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
-
FROM
|
|
|
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
COPY uv.lock pyproject.toml ./
|
|
|
|
| 1 |
+
FROM python:3.12-slim
|
| 2 |
+
|
| 3 |
+
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
| 4 |
|
| 5 |
WORKDIR /app
|
| 6 |
COPY uv.lock pyproject.toml ./
|