Skip to content

Commit

Permalink
Move bin/ into container/ as we installs that will be installed into …
Browse files Browse the repository at this point in the history
…the containers.
  • Loading branch information
alee-ntap committed Nov 6, 2023
1 parent 9f98ab3 commit 6f26bff
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
This project is part of the gardenlinux organization on GitHub and focuses on package building for GardenLinux system.

It contains:
- `bin/`: This folder contains executable scripts installs into the container.
- `container/`: This folder contains container-related files that define images and configurations.
- `*.containerfile`: These files define container images.
- `bin/`: This folder contains executable scripts installs into the container.
- `conf/`: This folder contains containers configurations on installed packages list and native container setup.
- `conf/`: This folder contains general configuration files.
- `misc/`: This folder contains miscellaneous files related to the project.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion container/build.containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get update \
&& find /tmp -mindepth 1 -delete

# Copy the build scripts from bin/ into /usr/local/bin
COPY bin/ /usr/local/bin
COPY container/bin/ /usr/local/bin

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

# Copy the build scripts from bin to /usr/local/bin
COPY bin/ /usr/local/bin
COPY container/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 6f26bff

Please sign in to comment.