Skip to content

Commit

Permalink
add headers for kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
michiboo committed Nov 7, 2023
1 parent f632eec commit 8c75fa3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ RUN curl -o /usr/local/bin/umoci -fsSL https://github.com/opencontainers/umoci/r
&& chmod +x /usr/local/bin/umoci

# install debug tools
RUN go get github.com/go-delve/delve/cmd/dlv@v1.7.3 \
RUN RUN go get github.com/go-delve/delve/cmd/dlv@v1.7.3\
&& apt-get update \
&& apt-get install -y --no-install-recommends \
psmisc
Expand All @@ -71,7 +71,7 @@ COPY tests/integration/multi-arch.bash tests/integration/
ENV ROOTFS /busybox
RUN mkdir -p "${ROOTFS}"
RUN . tests/integration/multi-arch.bash \
&& curl -fsSL https://github.com/openstack/kuryr/raw/master/contrib/busybox/busybox.tar.xz | tar Jxf - -C "${ROOTFS}"
&& curl -fsSL `get_busybox` | tar xfJC - "${ROOTFS}"

ENV DEBIAN_ROOTFS /debian
RUN mkdir -p "${DEBIAN_ROOTFS}"
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/multi-arch.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
get_busybox() {
case $(go env GOARCH) in
arm64)
echo 'https://github.com/openstack/kuryr/raw/master/contrib/busybox/busybox.tar.xz'
echo 'https://github.com/docker-library/busybox/raw/dist-arm64v8/stable/glibc/busybox.tar.xz'
;;
*)
echo 'https://github.com/docker-library/busybox/raw/dist-amd64/stable/glibc/busybox.tar.xz'
Expand Down

0 comments on commit 8c75fa3

Please sign in to comment.