Initial commit

This commit is contained in:
Ethan O'Brien
2024-09-23 09:17:49 -05:00
commit a761e26ac2
3 changed files with 78 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
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"]