10 lines
336 B
Docker
10 lines
336 B
Docker
FROM alpine:latest
|
|
RUN apk update && apk add --no-cache curl bash
|
|
RUN curl -sSL https://git.nixc.us/colin/Oculus/raw/branch/main/install.sh | bash
|
|
RUN curl -sSL https://git.nixc.us/Nixius/go-glitch/raw/branch/master/install.sh | bash
|
|
COPY notify.sh /notify.sh
|
|
RUN chmod +x /notify.sh
|
|
ENV GLITCHTIP_DSN=""
|
|
CMD ["/usr/local/bin/oculus"]
|
|
|