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.

1234567891011
  1. FROM debian:stable-slim
  2. MAINTAINER Drone CI/CD
  3. RUN echo 'http_proxy=$(ip route show default | cut -d' ' -f3)' >> /etc/profile
  4. ARG BUILDDEPS
  5. RUN apt-get update && \
  6. apt-get --yes upgrade && \
  7. apt-get --yes install ${BUILDDEPS}
  8. ENTRYPOINT ["/bin/bash", "-c"]