homelab/installer/Dockerfile
2023-11-05 14:28:38 -06:00

6 lines
144 B
Docker

FROM alpine
RUN apk update && apk add bash curl
WORKDIR /app
RUN curl -s https://i.jpillora.com/installer | bash
EXPOSE 3003
CMD /app/installer