Kromek Radangel gamma spectrometer USB HID daemon and WebUI. https://git.unino.de/pvivell/radangel
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Dockerfile 497B

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