n0v33n
commited on
Commit
·
e789681
1
Parent(s):
1903bfd
update
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -8,6 +8,6 @@ RUN apt-get update && apt-get install -y \
|
|
8 |
python3-dev \
|
9 |
&& rm -rf /var/lib/apt/lists/*
|
10 |
COPY app.py .
|
11 |
-
RUN pip install --no-cache-dir -requirements.txt
|
12 |
EXPOSE 7860
|
13 |
CMD ["python", "app.py"]
|
|
|
8 |
python3-dev \
|
9 |
&& rm -rf /var/lib/apt/lists/*
|
10 |
COPY app.py .
|
11 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
EXPOSE 7860
|
13 |
CMD ["python", "app.py"]
|