Spaces:
Sleeping
Sleeping
edit dockerfile
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
@@ -1,10 +1,8 @@
|
|
1 |
FROM python
|
2 |
|
3 |
-
WORKDIR app
|
4 |
|
5 |
-
COPY . app
|
6 |
-
|
7 |
-
RUN ls
|
8 |
|
9 |
RUN pip install --trusted-host pypi.python.org -r requirements.txt
|
10 |
|
|
|
1 |
FROM python
|
2 |
|
3 |
+
WORKDIR /app
|
4 |
|
5 |
+
COPY . /app
|
|
|
|
|
6 |
|
7 |
RUN pip install --trusted-host pypi.python.org -r requirements.txt
|
8 |
|