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)" ]