Files
Ethan O'Brien a761e26ac2 Initial commit
2024-09-23 09:17:49 -05:00

19 lines
418 B
Docker

FROM docker.io/library/node:bookworm-slim
RUN apt update && apt install git -y
RUN mkdir -p /root/ooye/
RUN git clone https://gitdab.com/cadence/out-of-your-element.git /root/ooye/
#RUN cd /root/ooye/ && git checkout v2.3
#COPY ./out-of-your-element/ /root/ooye/
RUN apt remove git -y && apt autoremove -y
COPY ./start.sh /root/ooye/start.sh
RUN chmod +x /root/ooye/start.sh
ENTRYPOINT ["/root/ooye/start.sh"]