Initial commit
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user