Gregniuki commited on
Commit
b6ba63d
·
1 Parent(s): 16a2fbe

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -11,6 +11,8 @@ WORKDIR /app
11
  COPY ./requirements.txt /app/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
 
 
11
  COPY ./requirements.txt /app/requirements.txt
12
  # Copy the FastAPI application code into the container
13
  COPY ./app.py /app/app.py
14
+ COPY ./interface.html /app/interface.html
15
+ COPY ./styles.css /app/styles.css
16
  # Install the required Python packages from requirements.txt
17
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
18