Skip to content

Commit

Permalink
Move scripts into bin/.
Browse files Browse the repository at this point in the history
  • Loading branch information
alee-ntap committed Nov 2, 2023
1 parent 5b99ab0 commit 58d73da
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions build.containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ RUN apt-get update \
&& ./main \
&& find /tmp -mindepth 1 -delete

# Copy the build scripts to /usr/local/bin
COPY build_source build_indep build_archdep build /usr/local/bin/
# Copy the build scripts from bin/ into /usr/local/bin
COPY bin/ /usr/local/bin

# Copy mini_sudo from stage 1
COPY --from=mini_sudo /usr/local/bin/sudo /usr/local/bin/sudo
Expand Down
4 changes: 2 additions & 2 deletions crossbuild.containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ RUN [ "/native/bash", "-c", "PATH=/native:$PATH ./setup_native import $(awk '{ p
# Clean up /tmp
RUN find /tmp -mindepth 1 -delete

# Copy the build scripts to /usr/local/bin
COPY build_source build_indep build_archdep build /usr/local/bin/
# Copy the build scripts from bin to /usr/local/bin
COPY bin/ /usr/local/bin

# Copy mini_sudo from stage 1
COPY --from=mini_sudo /usr/local/bin/sudo /usr/local/bin/sudo
Expand Down

0 comments on commit 58d73da

Please sign in to comment.