Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
ARG ARCH
ARG BOSSA_VERSION=1.9.1

FROM ${ARCH}/ubuntu:focal

ENV DEBIAN_FRONTEND=noninteractive

ARG ARCH
COPY ./assets/qemu/${ARCH}/ /usr/bin/

RUN apt update

RUN apt install -y --no-install-recommends \
libwxgtk3.0-gtk3-dev \
libreadline-dev \
build-essential \
git \
ca-certificates

ARG BOSSA_VERSION
RUN git clone -b ${BOSSA_VERSION} https://github.com/shumatech/BOSSA && \
git -C ./BOSSA switch -c release

WORKDIR ./BOSSA

CMD make

Empty file added assets/qemu/amd64/EMPTY_DIR
Empty file.
Binary file added assets/qemu/arm32v7/qemu-arm-static
Binary file not shown.
Binary file added assets/qemu/arm64v8/qemu-aarch64-static
Binary file not shown.