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