Spaces:
Sleeping
Sleeping
Commit
·
a5a77af
1
Parent(s):
259b34f
Fix file structure and add Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM python:3.9
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
@@ -16,7 +16,7 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
16 |
|
17 |
# Copy application code
|
18 |
COPY ./app.py /code/app.py
|
19 |
-
COPY ./templates
|
20 |
|
21 |
# Make port 7860 available to the world outside this container
|
22 |
EXPOSE 7860
|
|
|
1 |
+
FROM python:3.9
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
|
|
16 |
|
17 |
# Copy application code
|
18 |
COPY ./app.py /code/app.py
|
19 |
+
COPY ./templates /code/templates
|
20 |
|
21 |
# Make port 7860 available to the world outside this container
|
22 |
EXPOSE 7860
|