Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
FROM python:3.12-slim
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
RUN apt-get update && \
|
| 6 |
apt-get install -y git && \
|
|
@@ -12,7 +12,7 @@ RUN git clone https://github.com/SteveCelticus/httpsstream.git
|
|
| 12 |
|
| 13 |
# Copy the current directory contents into the container at /app
|
| 14 |
# (including run.py, filmpertutti.py, and requirements.txt)
|
| 15 |
-
|
| 16 |
|
| 17 |
# Install any needed packages specified in requirements.txt
|
| 18 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 1 |
FROM python:3.12-slim
|
| 2 |
|
| 3 |
+
WORKDIR /app
|
| 4 |
|
| 5 |
RUN apt-get update && \
|
| 6 |
apt-get install -y git && \
|
|
|
|
| 12 |
|
| 13 |
# Copy the current directory contents into the container at /app
|
| 14 |
# (including run.py, filmpertutti.py, and requirements.txt)
|
| 15 |
+
ADD . /app
|
| 16 |
|
| 17 |
# Install any needed packages specified in requirements.txt
|
| 18 |
RUN pip install --no-cache-dir -r requirements.txt
|