1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 13:15:18 +02:00

feat: Implement CDN update process with country data download and flag management

This commit is contained in:
Sean Morley 2025-02-04 17:19:58 -05:00
parent a00d2abe0d
commit 5f344cad83
4 changed files with 163 additions and 40 deletions

View file

@ -26,6 +26,9 @@ RUN mkdir -p /var/www/html/data && cp -r /app/data/* /var/www/html/data/
# Copy Nginx configuration
COPY nginx.conf /etc/nginx/nginx.conf
# Copy the index.html file to the Nginx serving directory
COPY index.html /usr/share/nginx/html/index.html
# Expose port 80 for Nginx
EXPOSE 80