aboutsummaryrefslogtreecommitdiff
path: root/newsboat
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2017-11-11 22:17:51 +0000
committerMike Crute <mike@crute.us>2017-11-11 22:17:51 +0000
commit6ee76e42f4919cfd13f398d7f6b066d94553db65 (patch)
tree2cafd59bf5b1f20b19520b6fc38d6870b98d222a /newsboat
parent2073a7c684765ff3184c34ea7d0960118d7e3c74 (diff)
downloaddockerfiles-6ee76e42f4919cfd13f398d7f6b066d94553db65.tar.bz2
dockerfiles-6ee76e42f4919cfd13f398d7f6b066d94553db65.tar.xz
dockerfiles-6ee76e42f4919cfd13f398d7f6b066d94553db65.zip
Use curl for newsboat
Diffstat (limited to 'newsboat')
-rw-r--r--newsboat/Dockerfile2
-rwxr-xr-xnewsboat/entrypoint.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/newsboat/Dockerfile b/newsboat/Dockerfile
index 82f62b0..9630f1e 100644
--- a/newsboat/Dockerfile
+++ b/newsboat/Dockerfile
@@ -22,9 +22,9 @@ RUN \
22 && make install \ 22 && make install \
23 && apk del .build-deps \ 23 && apk del .build-deps \
24 && apk add --no-cache \ 24 && apk add --no-cache \
25 curl \
25 gettext \ 26 gettext \
26 json-c \ 27 json-c \
27 libcurl \
28 libintl \ 28 libintl \
29 libstdc++ \ 29 libstdc++ \
30 libxml2 \ 30 libxml2 \
diff --git a/newsboat/entrypoint.sh b/newsboat/entrypoint.sh
index f0e4994..fc2261f 100755
--- a/newsboat/entrypoint.sh
+++ b/newsboat/entrypoint.sh
@@ -31,5 +31,5 @@ adduser -u ${UID} -S -h /home/newsboat -H -D -G newsboat newsboat
31if [ "$1" == "/bin/sh" ]; then 31if [ "$1" == "/bin/sh" ]; then
32 /sbin/su-exec newsboat "$@" 32 /sbin/su-exec newsboat "$@"
33else 33else
34 /sbin/su-exec newsboat /usr/local/bin/newsboat 34 /sbin/su-exec newsboat /usr/local/bin/newsboat "$@"
35fi 35fi