Skip to content

Commit 61eb6d0

Browse files
CHBMBtobbenb
authored andcommitted
Add curl to runtime packages (#24)
Following a report on Discord. I'm struggling with the ddclient docker container because it doesn't has curl installed and my dyndns host needs it to update everything, what should I do to get it into your image? ❤️ here is an example what I have to enter to get it to run: ``` protocol=dyndns2 use=if, if=eth0 ssl=yes use=cmd, cmd='curl https://checkipv4.dedyn.io/' server=update.dedyn.io login=XXXX.dedyn.io password='XXXX' XXXX.dedyn.io ``` That is what the log says to me: ``` Can't exec "curl": No such file or directory at /usr/bin/ddclient line 2175. WARNING: found neither ipv4 nor ipv6 address ```
1 parent 59a46f6 commit 61eb6d0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ RUN \
1111
echo "**** install build packages ****" && \
1212
apk add --no-cache --virtual=build-dependencies \
1313
bzip2 \
14-
curl \
1514
gcc \
1615
make \
1716
tar \
1817
wget && \
1918
echo "**** install runtime packages ****" && \
2019
apk add --no-cache \
20+
curl \
2121
inotify-tools \
2222
jq \
2323
perl \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ RUN \
1111
echo "**** install build packages ****" && \
1212
apk add --no-cache --virtual=build-dependencies \
1313
bzip2 \
14-
curl \
1514
gcc \
1615
make \
1716
tar \
1817
wget && \
1918
echo "**** install runtime packages ****" && \
2019
apk add --no-cache \
20+
curl \
2121
inotify-tools \
2222
jq \
2323
perl \

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ RUN \
1111
echo "**** install build packages ****" && \
1212
apk add --no-cache --virtual=build-dependencies \
1313
bzip2 \
14-
curl \
1514
gcc \
1615
make \
1716
tar \
1817
wget && \
1918
echo "**** install runtime packages ****" && \
2019
apk add --no-cache \
20+
curl \
2121
inotify-tools \
2222
jq \
2323
perl \

0 commit comments

Comments
 (0)