Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
FROM python:3.9
|
2 |
|
|
|
|
|
|
|
|
|
3 |
# Set the working directory to /code
|
4 |
WORKDIR /code
|
5 |
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
COPY . .
|
4 |
+
|
5 |
+
RUN pip install fastapi
|
6 |
+
|
7 |
# Set the working directory to /code
|
8 |
WORKDIR /code
|
9 |
|