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

Dockerfile 438B

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