File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
FROM alpine:latest
2
2
3
- RUN apk --no-cache add bash mosquitto-clients jq wget dcron libcap
4
- RUN wget https://bintray.com/ookla/download/download_file?file_path=ookla-speedtest-1.0.0-x86_64-linux.tgz -O /var/tmp/speedtest.tar.gz
5
- RUN tar xf /var/tmp/speedtest.tar.gz -C /var/tmp
6
- RUN ls -alF /var/tmp
7
- RUN cp /var/tmp/speedtest /usr/local/bin
3
+ RUN apk --no-cache add bash mosquitto-clients jq wget dcron libcap && \
4
+ wget https://bintray.com/ookla/download/download_file?file_path=ookla-speedtest-1.0.0-x86_64-linux.tgz -O /var/tmp/speedtest.tar.gz && \
5
+ tar xf /var/tmp/speedtest.tar.gz -C /var/tmp && \
6
+ mv /var/tmp/speedtest /usr/local/bin && \
7
+ rm /var/tmp/speedtest.tar.gz
8
8
9
- RUN addgroup -S foo && adduser -S foo -G foo
10
-
11
- RUN chown foo:foo /usr/sbin/crond && \
9
+ RUN addgroup -S foo && adduser -S foo -G foo && \
10
+ chown foo:foo /usr/sbin/crond && \
12
11
setcap cap_setgid=ep /usr/sbin/crond
13
12
14
13
ADD ./entrypoint.sh /opt/entrypoint.sh
You can’t perform that action at this time.
0 commit comments