Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
FROM ubuntu:24.04
|
|
|
|
|
2 |
WORKDIR /code
|
3 |
COPY ./requirements.txt /code/requirements.txt
|
4 |
RUN pip install -r /code/requirements.txt
|
|
|
1 |
FROM ubuntu:24.04
|
2 |
+
RUN apt-get update
|
3 |
+
RUN apt-get install python3-pip
|
4 |
WORKDIR /code
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
RUN pip install -r /code/requirements.txt
|