forked from hacs/default
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
48 lines (45 loc) · 1.36 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
FROM ghcr.io/ludeeus/alpine/base:stable
# docker build . -f tools/Dockerfile --tag repositories
# docker run --rm --name repositories repositories sleep 3600
# docker exec -it repositories bash
# Find stuff with 'grep -Ri "string_to_find" /<base_path>'
# COPY ./netdaemon /data/
# RUN \
# for entry in $(jq -r .[] /data/netdaemon); do\
# git clone --depth 1 "https://github.com/${entry}.git" "/netdaemon/${entry}";\
# done
#
#
# COPY ./appdaemon /data/
# RUN \
# for entry in $(jq -r .[] /data/appdaemon); do\
# git clone --depth 1 "https://github.com/${entry}.git" "/appdaemon/${entry}";\
# done
#
#
# COPY ./python_script /data/
# RUN \
# for entry in $(jq -r .[] /data/python_script); do\
# git clone --depth 1 "https://github.com/${entry}.git" "/python_script/${entry}";\
# done
#
#
# COPY ./theme /data/
# RUN \
# for entry in $(jq -r .[] /data/theme); do\
# git clone --depth 1 "https://github.com/${entry}.git" "/theme/${entry}";\
# done
#
#
# COPY ./plugin /data/
# RUN \
# for entry in $(jq -r .[] /data/plugin); do\
# git clone --depth 1 "https://github.com/${entry}.git" "/plugin/${entry}";\
# done
#
#
# COPY ./integration /data/
# RUN \
# for entry in $(jq -r .[] /data/integration); do\
# git clone --depth 1 "https://github.com/${entry}.git" "/integration/${entry}";\
# done