Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Aug 30, 2019
1 parent 3699285 commit 3f41986
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions openbmc-sdk/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM debian:bullseye-slim

RUN apt-get update && apt-get install -y \
bash \
build-essential \
ca-certificates \
curl \
python \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sSL -o /usr/bin/oecore-x86_64-armv6-toolchain-nodistro.0.sh https://openpower.xyz/job/openbmc-build-sdk/distro=ubuntu,target=romulus/lastSuccessfulBuild/artifact/deploy/sdk/oecore-x86_64-armv6-toolchain-nodistro.0.sh \
&& chmod +x /usr/bin/oecore-x86_64-armv6-toolchain-nodistro.0.sh

RUN mkdir -p /sdk/romulus \
&& oecore-x86_64-armv6-toolchain-nodistro.0.sh

RUN echo ". /usr/local/oecore-x86_64/environment-setup-armv6-openbmc-linux-gnueabi" > ~/.bash_history

ENTRYPOINT ["bash"]

0 comments on commit 3f41986

Please sign in to comment.