Kromek Radangel gamma spectrometer USB HID daemon and WebUI. https://git.unino.de/pvivell/radangel
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Dockerfile 335B

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