Skip to content

Commit

Permalink
try using setup.sh in base image
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter committed Sep 6, 2023
1 parent e579526 commit 1358c95
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 68 deletions.
24 changes: 0 additions & 24 deletions etc/bullseye-1.sh

This file was deleted.

37 changes: 0 additions & 37 deletions etc/bullseye-2.sh

This file was deleted.

15 changes: 8 additions & 7 deletions etc/packaging/32bit/Dockerfile
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

0 comments on commit 1358c95

Please sign in to comment.