5 Commits 137e90cce1 ... 3bf288ed9c

Author SHA1 Message Date
  Fabian Peter Hammerle 3bf288ed9c change default ipfs version to 0.9.1 2 years ago
  dependabot[bot] 024bad19c6 Bump docker/setup-buildx-action from 1.5.0 to 1.5.1 2 years ago
  dependabot[bot] fdda6e81d3 Bump docker/build-push-action from 2.5.0 to 2.6.1 2 years ago
  dependabot[bot] 187e7871a9 Bump docker/setup-buildx-action from 1.3.0 to 1.5.0 2 years ago
  dependabot[bot] 100103af55 Bump debian from 10.9-slim to 10.10-slim 2 years ago
2 changed files with 4 additions and 4 deletions
  1. 2 2
      .github/workflows/container-image.yml
  2. 2 2
      Dockerfile

+ 2 - 2
.github/workflows/container-image.yml

@@ -13,13 +13,13 @@ jobs:
     runs-on: ubuntu-20.04
     steps:
     - uses: docker/setup-qemu-action@v1.2.0
-    - uses: docker/setup-buildx-action@v1.3.0
+    - uses: docker/setup-buildx-action@v1.5.1
     # > By default, this action uses the Git context so you don't need to use
     # > the actions/checkout action to checkout the repository because this
     # > will be done directly by buildkit. [...]
     # > any file mutation in the steps that precede [...] will be ignored
     # https://github.com/marketplace/actions/build-and-push-docker-images
-    - uses: docker/build-push-action@v2.5.0
+    - uses: docker/build-push-action@v2.6.1
       with:
         platforms: |
           linux/amd64

+ 2 - 2
Dockerfile

@@ -1,7 +1,7 @@
 # on alpine with libc6-compat=1.1.24-r9:
 # > Error relocating /usr/local/bin/ipfs: __fprintf_chk: symbol not found
 # > Error relocating /usr/local/bin/ipfs: __vfprintf_chk: symbol not found
-FROM debian:10.9-slim
+FROM debian:10.10-slim
 
 ARG JQ_PACKAGE_VERSION=1.5+dfsg-2+b1
 ARG TINI_PACKAGE_VERSION=0.18.0-1
@@ -19,7 +19,7 @@ RUN apt-get update \
     && chown ipfs $IPFS_PATH
 VOLUME $IPFS_PATH
 
-ARG IPFS_VERSION=0.9.0
+ARG IPFS_VERSION=0.9.1
 COPY ipfs-arch.sh /
 ARG INSTALL_DEPENDENCIES="wget ca-certificates"
 RUN apt-get update \