Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -1,10 +1,8 @@
|
|
| 1 |
FROM python:3.10-slim-buster
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
-
RUN sudo rm -rf /var/lib/apt/lists/*
|
| 5 |
-
RUN sudo rm -R /var/lib/apt/lists/partial/*
|
| 6 |
|
| 7 |
-
RUN apt-get update
|
| 8 |
|
| 9 |
RUN git clone https://github.com/kamicrafted/UnHided.git .
|
| 10 |
|
|
|
|
| 1 |
FROM python:3.10-slim-buster
|
| 2 |
|
| 3 |
WORKDIR /app
|
|
|
|
|
|
|
| 4 |
|
| 5 |
+
RUN apt-get update && apt-get install -y git
|
| 6 |
|
| 7 |
RUN git clone https://github.com/kamicrafted/UnHided.git .
|
| 8 |
|