Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -9,7 +9,8 @@ WORKDIR /code
|
|
9 |
|
10 |
# Copy the requirements file into the container at /code/
|
11 |
COPY ./requirements.txt /code/requirements.txt
|
12 |
-
|
|
|
13 |
# Install the required Python packages from requirements.txt
|
14 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
15 |
|
|
|
9 |
|
10 |
# Copy the requirements file into the container at /code/
|
11 |
COPY ./requirements.txt /code/requirements.txt
|
12 |
+
# Copy the FastAPI application code into the container
|
13 |
+
COPY ./app.py /app/app.py
|
14 |
# Install the required Python packages from requirements.txt
|
15 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
16 |
|