rasmodev commited on
Commit
be5f822
·
1 Parent(s): 8246363

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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