Kromek Radangel gamma spectrometer USB HID daemon and WebUI. https://git.unino.de/pvivell/radangel
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Dockerfile 368B

123456789101112
  1. FROM debian:stable-slim
  2. RUN apt-get update && \
  3. apt-get --yes upgrade && \
  4. apt-get --yes install iproute2 ; \
  5. echo 'export http_proxy=http://$(ip route list exact 0.0.0.0/0 | head -1 | cut -d" " -f3):3142/' >> /etc/profile ; \
  6. . /etc/profile
  7. ARG BUILDDEPS
  8. RUN apt-get --yes install build-essential ca-certificates curl git ${BUILDDEPS}
  9. CMD ["bash"]