Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -7,6 +7,9 @@ WORKDIR /app
|
|
7 |
# Copy your FastAPI application code into the container
|
8 |
COPY ./app.py /app
|
9 |
|
|
|
|
|
|
|
10 |
# Copy the requirements.txt file into the container
|
11 |
COPY ./requirements.txt /app
|
12 |
|
|
|
7 |
# Copy your FastAPI application code into the container
|
8 |
COPY ./app.py /app
|
9 |
|
10 |
+
# Copy the .env file containing the API Key into the container
|
11 |
+
COPY ./.env /app
|
12 |
+
|
13 |
# Copy the requirements.txt file into the container
|
14 |
COPY ./requirements.txt /app
|
15 |
|