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

Dockerfile 308B

123456789101112
  1. FROM debian:stable-slim
  2. ARG MAINTAINER
  3. MAINTAINER ${MAINTAINER}
  4. RUN echo 'export http_proxy=$(ip route show default | cut -d' ' -f3):3142' >> /etc/profile
  5. ARG BUILDDEPS
  6. RUN apt-get update && \
  7. apt-get --yes upgrade && \
  8. apt-get --yes install ${BUILDDEPS}
  9. ENTRYPOINT ["/bin/bash", "-c", "#(noop)"]