Skip to content

Commit

Permalink
Move mini_sudo.c into misc/.
Browse files Browse the repository at this point in the history
  • Loading branch information
alee-ntap committed Nov 2, 2023
1 parent 34a53ac commit 4dc5642
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG arch=amd64
# Stage 1: Build and install mini_sudo
FROM $arch/$image AS mini_sudo
WORKDIR /tmp
COPY mini_sudo.c ./
COPY misc/mini_sudo.c ./
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install \
--no-install-recommends -y gcc libc-dev \
Expand Down
2 changes: 1 addition & 1 deletion crossbuild.containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG target_arch=arm64v8
# Stage 1: Build and install mini_sudo
FROM $native_arch/$image AS mini_sudo
WORKDIR /tmp
COPY mini_sudo.c ./
COPY misc/mini_sudo.c ./
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install \
--no-install-recommends -y gcc libc-dev \
Expand Down
File renamed without changes.

0 comments on commit 4dc5642

Please sign in to comment.