homelab/installer/Dockerfile

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