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.

1234567891011121314151617
  1. # define builder target
  2. FROM debian:stable-slim as builder
  3. # Environment PATH HOME HOSTNAME
  4. # ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  5. # ENV HOME /
  6. # Prepare build dependencies and clean up
  7. ARG BUILD_DEPS
  8. RUN apt-get -q update && \
  9. DEBIAN_FRONTEND=noninteractive apt-get -qy upgrade && \
  10. DEBIAN_FRONTEND=noninteractive apt-get -qy install --no-install-recommends ${BUILD_DEPS} \
  11. build-essential ca-certificates curl git iproute2 wget && \
  12. apt-get clean && rm -rf /var/lib/apt/lists/*
  13. # Default command
  14. CMD ["bash"]