Files
archy/docker/electrs-ui/Dockerfile
2026-03-22 03:30:21 +00:00

8 lines
247 B
Docker

FROM docker.io/library/nginx:alpine
COPY index.html /usr/share/nginx/html/
COPY 50x.html /usr/share/nginx/html/
COPY assets/ /usr/share/nginx/html/assets/
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]