2022-04-13 13:21:46 +00:00
|
|
|
FROM dyne/devuan:chimaera
|
2019-03-03 16:56:26 +00:00
|
|
|
|
2021-01-23 19:16:29 +00:00
|
|
|
RUN echo "deb http://deb.devuan.org/merged chimaera main" >> /etc/apt/sources.list
|
|
|
|
RUN apt-get update -y -q --allow-releaseinfo-change
|
2022-04-13 13:21:46 +00:00
|
|
|
RUN apt-get install -y -q zsh cryptsetup gpg gawk libgcrypt20-dev steghide qrencode python python2.7 python3-pip python3-dev libssl-dev make gcc sudo gettext bsdmainutils file pinentry-curses xxd libsodium23 libsodium-dev doas
|
2019-03-03 16:56:26 +00:00
|
|
|
RUN pip3 install setuptools wheel
|
|
|
|
|
|
|
|
COPY . /Tomb/
|
|
|
|
|
2021-04-07 17:20:12 +00:00
|
|
|
COPY extras/test/doas.conf /etc/doas.conf
|
2021-04-07 18:56:19 +00:00
|
|
|
RUN chmod 400 /etc/doas.conf
|
2021-04-07 17:20:12 +00:00
|
|
|
|
2019-03-03 16:56:26 +00:00
|
|
|
WORKDIR /Tomb
|
|
|
|
RUN make --directory=extras/kdf-keys
|
2020-06-22 08:48:49 +00:00
|
|
|
RUN make --directory=extras/kdf-keys install
|