main beautify
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 10m11s

This commit is contained in:
2025-12-13 02:29:42 -03:00
parent 26101af13a
commit 3c42ca9668
37 changed files with 3175 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM nginx:alpine
COPY public/ /usr/share/nginx/html
# Install wget and download jQuery
RUN apk add --no-cache wget && \
mkdir -p /usr/share/nginx/html/jquery && \
wget https://code.jquery.com/jquery-3.5.1.slim.min.js -O /usr/share/nginx/html/jquery/jquery-3.5.1.slim.min.js