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.

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