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

Dockerfile 342B

1234567891011121314
  1. FROM debian:stable-slim
  2. MAINTAINER Drone CI/CD
  3. RUN cat >> /etc/apt/apt.conf.d/01-proxy <<-EOF \
  4. Acquire::http { Proxy "${HTTP_PROXY}"; } \
  5. Acquire::https { Proxy "https://"; }; \
  6. EOF
  7. RUN apt-get update && \
  8. apt-get --yes upgrade && \
  9. apt-get --yes install ${BUILDDEPS}
  10. CMD [ "/bin/bash", "-c", "#(noop)" ]