Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit cd42b6e

Browse files
authored
Merge pull request #2 from linuxserver/ipfs-edge
pull go-ipfs from edge repos in alpine
2 parents 85ef849 + 82ca788 commit cd42b6e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ RUN \
1414
echo "**** install runtime packages ****" && \
1515
apk add --no-cache \
1616
curl \
17-
go-ipfs \
1817
logrotate \
1918
nginx \
2019
openssl \
2120
php7 \
2221
php7-fpm && \
22+
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
23+
go-ipfs && \
2324
echo "**** install ipfs web-ui ****" && \
2425
mkdir -p /var/www/html/ && \
2526
if [ -z ${IPFSWEB_VERSION+x} ]; then \

Dockerfile.aarch64

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ RUN \
1414
echo "**** install runtime packages ****" && \
1515
apk add --no-cache \
1616
curl \
17-
go-ipfs \
1817
logrotate \
1918
nginx \
2019
openssl \
2120
php7 \
2221
php7-fpm && \
22+
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
23+
go-ipfs && \
2324
echo "**** install ipfs web-ui ****" && \
2425
mkdir -p /var/www/html/ && \
2526
if [ -z ${IPFSWEB_VERSION+x} ]; then \

Dockerfile.armhf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ RUN \
1414
echo "**** install runtime packages ****" && \
1515
apk add --no-cache \
1616
curl \
17-
go-ipfs \
1817
logrotate \
1918
nginx \
2019
openssl \
2120
php7 \
2221
php7-fpm && \
22+
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
23+
go-ipfs && \
2324
echo "**** install ipfs web-ui ****" && \
2425
mkdir -p /var/www/html/ && \
2526
if [ -z ${IPFSWEB_VERSION+x} ]; then \

0 commit comments

Comments
 (0)