Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -13,7 +13,9 @@ COPY requirements.txt /app/requirements.txt
|
|
13 |
RUN chmod -R 777 /app && chmod +x /app/sync_webuidb.sh && \
|
14 |
pip install --no-cache-dir -r /app/requirements.txt || true
|
15 |
|
16 |
-
EXPOSE 7860
|
|
|
|
|
17 |
COPY icon.png /app/static/icon.png
|
18 |
|
19 |
# Thay thế tất cả các icon cũ (png, svg) bằng icon.png
|
|
|
13 |
RUN chmod -R 777 /app && chmod +x /app/sync_webuidb.sh && \
|
14 |
pip install --no-cache-dir -r /app/requirements.txt || true
|
15 |
|
16 |
+
EXPOSE 7860
|
17 |
+
|
18 |
+
# Sao chép icon mới vào container
|
19 |
COPY icon.png /app/static/icon.png
|
20 |
|
21 |
# Thay thế tất cả các icon cũ (png, svg) bằng icon.png
|