File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ FROM docker:19.03.14
3
3
# Install dependencies.
4
4
RUN apk update && apk add --no-cache bash jq
5
5
6
+ RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.13/main' >> /etc/apk/repositories \
7
+ && echo 'http://dl-cdn.alpinelinux.org/alpine/v3.13/community' >> /etc/apk/repositories \
8
+ && apk add bcc-tools=0.18.0-r0 bcc-doc=0.18.0-r0 && ln -s $(which python3) /usr/bin/python
9
+
6
10
WORKDIR /home/dblab
7
11
COPY ./bin/dblab ./bin/dblab
8
- CMD ./bin/dblab
12
+ # TODO: return CMD ./bin/dblab
13
+ CMD sleep infinity
Original file line number Diff line number Diff line change @@ -33,6 +33,9 @@ FROM docker:19.03.14
33
33
34
34
# Install dependencies.
35
35
RUN apk update && apk add --no-cache zfs lvm2 bash util-linux
36
+ RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.13/main' >> /etc/apk/repositories \
37
+ && echo 'http://dl-cdn.alpinelinux.org/alpine/v3.13/community' >> /etc/apk/repositories \
38
+ && apk add bcc-tools=0.18.0-r0 bcc-doc=0.18.0-r0 && ln -s $(which python3) /usr/bin/python
36
39
37
40
WORKDIR /home/dblab
38
41
You can’t perform that action at this time.
0 commit comments