This commit is contained in:
Sergei Poljanski 2025-11-25 05:24:04 +02:00
commit 13f6db18f2
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
7 changed files with 124 additions and 4 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM nginx:alpine
# Copy website files to nginx html directory
COPY index.html /usr/share/nginx/html/
COPY id_ed25519.pub /usr/share/nginx/html/
COPY copyPGP.js /usr/share/nginx/html/
COPY copySSH.js /usr/share/nginx/html/
COPY hedgehod.png /usr/share/nginx/html/
COPY pgp.pub /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]