-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
70 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,6 @@ | ||
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.19-buster | ||
LABEL maintainer="Steven Allen <[email protected]>" | ||
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.19-buster AS builder | ||
|
||
ARG TARGETPLATFORM | ||
ARG BUILDPLATFORM | ||
ARG TARGETOS | ||
ARG TARGETARCH | ||
|
||
# Install deps | ||
RUN apt-get update && apt-get install -y \ | ||
libssl-dev \ | ||
ca-certificates \ | ||
fuse | ||
ARG TARGETPLATFORM TARGETOS TARGETARCH | ||
|
||
ENV SRC_DIR /kubo | ||
|
||
|
@@ -31,38 +21,32 @@ RUN cd $SRC_DIR \ | |
&& mkdir -p .git/objects \ | ||
&& GOOS=$TARGETOS GOARCH=$TARGETARCH GOFLAGS=-buildvcs=false make build GOTAGS=openssl IPFS_PLUGINS=$IPFS_PLUGINS | ||
|
||
# Get su-exec, a very minimal tool for dropping privileges, | ||
# and tini, a very minimal init daemon for containers | ||
ENV SUEXEC_VERSION v0.2 | ||
ENV TINI_VERSION v0.19.0 | ||
FROM debian:bookworm-slim AS utilities | ||
RUN set -eux; \ | ||
dpkgArch="$(dpkg --print-architecture)"; \ | ||
case "${dpkgArch##*-}" in \ | ||
"amd64" | "armhf" | "arm64") tiniArch="tini-static-$dpkgArch" ;;\ | ||
*) echo >&2 "unsupported architecture: ${dpkgArch}"; exit 1 ;; \ | ||
esac; \ | ||
cd /tmp \ | ||
&& git clone https://github.com/ncopa/su-exec.git \ | ||
&& cd su-exec \ | ||
&& git checkout -q $SUEXEC_VERSION \ | ||
&& make su-exec-static \ | ||
&& cd /tmp \ | ||
&& wget -q -O tini https://github.com/krallin/tini/releases/download/$TINI_VERSION/$tiniArch \ | ||
&& chmod +x tini | ||
apt-get update; \ | ||
apt-get install -y \ | ||
# v0.19.0 | ||
tini \ | ||
# v0.2, su-exec | ||
gosu \ | ||
fuse \ | ||
ca-certificates \ | ||
libssl-dev \ | ||
; \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Now comes the actual target image, which aims to be as small as possible. | ||
FROM --platform=${BUILDPLATFORM:-linux/amd64} busybox:1.31.1-glibc | ||
LABEL maintainer="Steven Allen <[email protected]>" | ||
FROM busybox:1.31.1-glibc | ||
|
||
# Get the ipfs binary, entrypoint script, and TLS CAs from the build container. | ||
ENV SRC_DIR /kubo | ||
COPY --from=0 $SRC_DIR/cmd/ipfs/ipfs /usr/local/bin/ipfs | ||
COPY --from=0 $SRC_DIR/bin/container_daemon /usr/local/bin/start_ipfs | ||
COPY --from=0 $SRC_DIR/bin/container_init_run /usr/local/bin/container_init_run | ||
COPY --from=0 /tmp/su-exec/su-exec-static /sbin/su-exec | ||
COPY --from=0 /tmp/tini /sbin/tini | ||
COPY --from=0 /bin/fusermount /usr/local/bin/fusermount | ||
COPY --from=0 /etc/ssl/certs /etc/ssl/certs | ||
COPY --from=builder $SRC_DIR/cmd/ipfs/ipfs /usr/local/bin/ipfs | ||
COPY --from=builder $SRC_DIR/bin/container_daemon /usr/local/bin/start_ipfs | ||
COPY --from=builder $SRC_DIR/bin/container_init_run /usr/local/bin/container_init_run | ||
COPY --from=utilities /usr/sbin/gosu /sbin/su-exec | ||
COPY --from=utilities /usr/bin/tini /sbin/tini | ||
COPY --from=utilities /usr/bin/fusermount /usr/local/bin/fusermount | ||
COPY --from=utilities /etc/ssl/certs /etc/ssl/certs | ||
|
||
# Add suid bit on fusermount so it will run properly | ||
RUN chmod 4755 /usr/local/bin/fusermount | ||
|
@@ -71,11 +55,11 @@ RUN chmod 4755 /usr/local/bin/fusermount | |
RUN chmod 0755 /usr/local/bin/start_ipfs | ||
|
||
# This shared lib (part of glibc) doesn't seem to be included with busybox. | ||
COPY --from=0 /lib/*-linux-gnu*/libdl.so.2 /lib/ | ||
COPY --from=utilities /lib/*-linux-gnu*/libdl.so.2 /lib/ | ||
|
||
# Copy over SSL libraries. | ||
COPY --from=0 /usr/lib/*-linux-gnu*/libssl.so* /usr/lib/ | ||
COPY --from=0 /usr/lib/*-linux-gnu*/libcrypto.so* /usr/lib/ | ||
COPY --from=utilities /usr/lib/*-linux-gnu*/libssl.so* /usr/lib/ | ||
COPY --from=utilities /usr/lib/*-linux-gnu*/libcrypto.so* /usr/lib/ | ||
|
||
# Swarm TCP; should be exposed to the public | ||
EXPOSE 4001 | ||
|