Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rsync #12

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
FROM --platform=$BUILDPLATFORM alpine:3 AS build-env

RUN apk add --update --no-cache \
automake \
autoconf \
bash \
bison \
curl \
eudev-dev \
flex \
gcc \
git \
libc-dev \
libtool \
linux-headers \
make \
wget \
bison \
flex \
automake \
autoconf \
libtool
wget

ARG TARGETARCH
ARG BUILDARCH
Expand Down Expand Up @@ -66,6 +66,7 @@ RUN apk add --no-cache \
lz4 \
nano \
npm \
rsync \
wget \
zstd-dev

Expand Down
16 changes: 9 additions & 7 deletions native.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
FROM alpine:3 AS build-env

RUN apk add --update --no-cache \
automake \
autoconf \
bash \
bison \
curl \
eudev-dev \
flex \
gcc \
git \
libc-dev \
libtool \
linux-headers \
make \
wget \
bison \
flex \
automake \
autoconf \
libtool
wget

# Build minimal busybox
WORKDIR /
Expand All @@ -41,7 +41,9 @@ RUN apk add --no-cache \
lz4 \
nano \
npm \
wget
rsync \
wget \
zstd-dev

# Install busybox
COPY --from=build-env /busybox/busybox /busybox/busybox
Expand Down
Loading