Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -39,9 +39,9 @@ RUN apt-get update && \
|
|
39 |
WORKDIR /app
|
40 |
|
41 |
# Copy the requirements file into the container at /code/
|
42 |
-
COPY ./requirements.txt /app/requirements.txt
|
43 |
-
# Copy the
|
44 |
-
COPY ./ /app
|
45 |
#COPY ./interface.html /app/interface.html
|
46 |
#COPY ./styles.css /app/styles.css
|
47 |
# Install the required Python packages from requirements.txt
|
|
|
39 |
WORKDIR /app
|
40 |
|
41 |
# Copy the requirements file into the container at /code/
|
42 |
+
#COPY ./requirements.txt /app/requirements.txt
|
43 |
+
# Copy the FastAP application code into the container
|
44 |
+
COPY ./ /app
|
45 |
#COPY ./interface.html /app/interface.html
|
46 |
#COPY ./styles.css /app/styles.css
|
47 |
# Install the required Python packages from requirements.txt
|