Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -2,7 +2,7 @@ FROM python:3.12-slim
|
|
2 |
|
3 |
# Install system dependencies
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
-
wget \
|
6 |
build-essential \
|
7 |
&& rm -rf /var/lib/apt/lists/*
|
8 |
|
@@ -16,6 +16,9 @@ COPY requirements.txt ./
|
|
16 |
RUN pip install --no-cache-dir -r requirements.txt
|
17 |
|
18 |
# Download your server.py as app.py
|
|
|
|
|
|
|
19 |
RUN wget https://huggingface.co/datasets/Techbitforge/0/resolve/main/server.py \
|
20 |
-O app.py
|
21 |
|
|
|
2 |
|
3 |
# Install system dependencies
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
+
wget git \
|
6 |
build-essential \
|
7 |
&& rm -rf /var/lib/apt/lists/*
|
8 |
|
|
|
16 |
RUN pip install --no-cache-dir -r requirements.txt
|
17 |
|
18 |
# Download your server.py as app.py
|
19 |
+
|
20 |
+
RUN git clone https://huggingface.co/datasets/Techbitforge/0/
|
21 |
+
|
22 |
RUN wget https://huggingface.co/datasets/Techbitforge/0/resolve/main/server.py \
|
23 |
-O app.py
|
24 |
|