Kromek Radangel gamma spectrometer USB HID daemon and WebUI. https://git.unino.de/pvivell/radangel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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