Spaces:
Running
Running
cassiebuhler
commited on
Commit
·
156f523
1
Parent(s):
31f2d12
copy needs two arguments
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 10 |
git \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
-
COPY app .
|
| 14 |
-
COPY requirements.txt
|
| 15 |
RUN pip3 install -r requirements.txt
|
| 16 |
|
| 17 |
#EXPOSE 8501
|
|
|
|
| 10 |
git \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
+
COPY app/ .
|
| 14 |
+
COPY requirements.txt .
|
| 15 |
RUN pip3 install -r requirements.txt
|
| 16 |
|
| 17 |
#EXPOSE 8501
|