Spaces:
Runtime error
Runtime error
Ruben
commited on
Commit
·
95c1613
1
Parent(s):
03e3790
cleaned
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -1,8 +1,6 @@
|
|
| 1 |
-
FROM
|
| 2 |
WORKDIR /app
|
| 3 |
|
| 4 |
-
RUN apt-get update && apt-get install -y python python3 python3-pip
|
| 5 |
-
|
| 6 |
COPY ./requirements.txt /app/requirements.txt
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
| 8 |
|
|
|
|
| 1 |
+
FROM python:3.9
|
| 2 |
WORKDIR /app
|
| 3 |
|
|
|
|
|
|
|
| 4 |
COPY ./requirements.txt /app/requirements.txt
|
| 5 |
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
| 6 |
|