-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e579526
commit 1358c95
Showing
3 changed files
with
8 additions
and
68 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
FROM debian:bullseye | ||
# docker arch guide https://github.com/docker-library/official-images#architectures-other-than-amd64 | ||
|
||
RUN apt-get update && apt-get install sudo | ||
RUN adduser --disabled-password runner | ||
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers | ||
RUN adduser runner sudo | ||
USER runner | ||
WORKDIR /build | ||
COPY etc/bullseye-1.sh . | ||
RUN ./bullseye-1.sh | ||
RUN apt-get install -qqy wget xz-utils file | ||
COPY etc/bullseye-2.sh . | ||
RUN ./bullseye-2.sh | ||
RUN apt-get install -qqy vim pkg-config | ||
COPY etc/setup.sh . | ||
RUN ./setup.sh | ||
RUN sudo apt-get install -qqy wget xz-utils file vim pkg-config | ||
WORKDIR /rdk |