Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
Β·
9acc34b
1
Parent(s):
ac9c6c1
Dockerfile needs wget
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
# π Use official Python
|
2 |
FROM python:3.11-slim
|
3 |
|
|
|
|
|
|
|
4 |
WORKDIR /app
|
5 |
COPY . .
|
6 |
|
|
|
1 |
# π Use official Python
|
2 |
FROM python:3.11-slim
|
3 |
|
4 |
+
# Install wget
|
5 |
+
RUN apt-get update && apt-get install -y wget
|
6 |
+
|
7 |
WORKDIR /app
|
8 |
COPY . .
|
9 |
|