2026-03-29 17:48:13 +01:00
|
|
|
FROM 80.71.235.15:3000/archipelago/nginx:1.27.4-alpine
|
2026-03-19 17:02:17 +00:00
|
|
|
|
|
|
|
|
# Copy the HTML file
|
|
|
|
|
COPY index.html /usr/share/nginx/html/
|
|
|
|
|
COPY tailwind.css /usr/share/nginx/html/
|
|
|
|
|
COPY qrcode.js /usr/share/nginx/html/
|
|
|
|
|
|
|
|
|
|
# Create directories for assets
|
|
|
|
|
RUN mkdir -p /usr/share/nginx/html/assets/img/app-icons && \
|
|
|
|
|
mkdir -p /usr/share/nginx/html/assets/img
|
|
|
|
|
|
|
|
|
|
# Copy assets
|
|
|
|
|
COPY lnd.svg /usr/share/nginx/html/assets/img/app-icons/
|
|
|
|
|
COPY bg-web5.jpg /usr/share/nginx/html/assets/img/
|
|
|
|
|
COPY bg-intro.jpg /usr/share/nginx/html/assets/img/
|
|
|
|
|
|
|
|
|
|
# Copy nginx config
|
|
|
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|