File tree Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 11FROM alpine:latest
22
3- RUN apk --no-cache add wget
4-
5- RUN wget -qO- https://www.gershnik.com/alpine-repo/gershnik@hotmail.com-6643812b.rsa.pub \
3+ RUN <<EOF
4+ set -ex
5+ apk --no-cache add wget
6+ wget -qO- https://www.gershnik.com/alpine-repo/gershnik@hotmail.com-6643812b.rsa.pub \
67 > /etc/apk/keys/gershnik@hotmail.com-6643812b.rsa.pub
7-
8- RUN mkdir -p /etc/apk/repositories.d && \
9- echo "https://www.gershnik.com/alpine-repo/main" \
8+ mkdir -p /etc/apk/repositories.d
9+ echo "https://www.gershnik.com/alpine-repo/main" \
1010 > /etc/apk/repositories.d/www.gershnik.com.list
11+ apk del wget
12+ apk update
13+ apk --no-cache add wsdd-native
1114
12- RUN apk del wget
13-
14- RUN apk update
15-
16- RUN apk --no-cache add wsdd-native
15+ EOF
1716
1817COPY run-wsddn ./
1918
Original file line number Diff line number Diff line change @@ -12,5 +12,5 @@ if [ ! -z "${WSDDN_WORKGROUP}" ]; then
1212elif [ ! -z " ${WSDDN_DOMAIN} " ]; then
1313 exec wsddn --user wsddn --hostname " ${WSDDN_HOSTNAME} " --domain " ${WSDDN_DOMAIN} "
1414else
15- exec wsddn --user wsddn --hostname " ${WSDDN_HOSTNAME} " --log-level=5
15+ exec wsddn --user wsddn --hostname " ${WSDDN_HOSTNAME} "
1616fi
You can’t perform that action at this time.
0 commit comments