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.

12345678910111213141516171819
  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. RUN cat /etc/resolv.conf
  7. # Prepare build dependencies and clean up
  8. ARG BUILD_DEPS
  9. RUN apt-get -q update && \
  10. DEBIAN_FRONTEND=noninteractive apt-get -qy upgrade && \
  11. DEBIAN_FRONTEND=noninteractive apt-get -qy install --no-install-recommends ${BUILD_DEPS} \
  12. build-essential ca-certificates curl git iproute2 wget && \
  13. apt-get clean && rm -rf /var/lib/apt/lists/*
  14. # Default command
  15. CMD ["bash"]