20 lines
548 B
Docker
20 lines
548 B
Docker
|
|
FROM docker.io/library/nginx:alpine
|
||
|
|
|
||
|
|
# Copy the static UI
|
||
|
|
COPY index.html /usr/share/nginx/html/
|
||
|
|
|
||
|
|
# Create assets directories first
|
||
|
|
RUN mkdir -p /usr/share/nginx/html/assets/img/app-icons && \
|
||
|
|
mkdir -p /usr/share/nginx/html/assets/img
|
||
|
|
|
||
|
|
# Copy Bitcoin Knots icon and background
|
||
|
|
COPY bitcoin-knots.webp /usr/share/nginx/html/assets/img/app-icons/
|
||
|
|
COPY bg-network.jpg /usr/share/nginx/html/assets/img/
|
||
|
|
|
||
|
|
# Copy custom Nginx config with Bitcoin RPC proxy
|
||
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||
|
|
|
||
|
|
EXPOSE 80
|
||
|
|
|
||
|
|
CMD ["nginx", "-g", "daemon off;"]
|