19 lines
418 B
Docker
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"]
|