add default index.html
All checks were successful
Publish Docker Image / docker (push) Successful in 1m7s

This commit is contained in:
Lee
2024-02-25 17:37:58 +00:00
parent 006ac97c68
commit 93f49e9326
3 changed files with 32 additions and 0 deletions

View File

@ -23,6 +23,7 @@ COPY ./docker/nginx.conf /etc/nginx/nginx.conf
# Setup scripts
COPY ./upload.php /tmp/upload.php
COPY ./docker/start.sh /start.sh
COPY ./docker/index.html /tmp/index.html
# Copy public directory
COPY ./public /tmp/public
@ -35,6 +36,7 @@ COPY --from=builder /usr/local/nginx /usr/local/nginx
COPY --from=builder /usr/local/sbin/nginx /usr/local/sbin/nginx
COPY --from=builder /etc/nginx /etc/nginx
COPY --from=builder /tmp/upload.php /tmp/upload.php
COPY --from=builder /tmp/index.html /tmp/index.html
COPY --from=builder /start.sh /start.sh
COPY --from=builder /tmp/public /tmp/public