Gregniuki commited on
Commit
8f9e79a
·
1 Parent(s): e92a82f

Update Dockerfile

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