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

Dockerfile 345B

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=$(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 ${BUILDDEPS}
  9. ENTRYPOINT ["/bin/sh", "-c", "#(nop)"]