Kromek Radangel gamma spectrometer USB HID daemon and WebUI. https://git.unino.de/pvivell/radangel
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Dockerfile 324B

123456789101112
  1. FROM debian:stable-slim
  2. ARG MAINTAINER
  3. MAINTAINER ${MAINTAINER}
  4. RUN echo 'export http_proxy=$(ip route list exact 0.0.0.0/0 | head -1 | 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/sh", "-c", "#(noop)"]