Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Containerfile/Dockerfile (debian:sid installation command) #4

Open
emanuelb opened this issue Aug 1, 2020 · 0 comments
Open

Add Containerfile/Dockerfile (debian:sid installation command) #4

emanuelb opened this issue Aug 1, 2020 · 0 comments

Comments

@emanuelb
Copy link

emanuelb commented Aug 1, 2020

Below Containerfile was used to build this repo using debian:sid-slim by running command: podman build --rm -t darwinsdk .

FROM docker.io/debian:sid-slim
ENV DEBIAN_FRONTEND=noninteractive

COPY . /darwinsdk/
WORKDIR /darwinsdk/

RUN set -ex; \
    apt-get update; \
    apt-get install --yes --no-install-recommends \
        clang libssl-dev dpkg-dev fakeroot debhelper llvm-dev uuid-dev libblocksruntime-dev libc6-dev-i386 gcc-multilib build-essential flex tcsh bison automake autogen libtool libdb-dev; \
    echo 'deb http://deb.debian.org/debian stretch main' >> /etc/apt/sources.list; \
    apt-get update; \
    apt-get install --yes --no-install-recommends clang-4.0;

RUN dpkg-buildpackage -us -uc; \
    dpkg -i ../darwin-sdk*.deb;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant