Kromek Radangel gamma spectrometer USB HID daemon and WebUI. https://git.unino.de/pvivell/radangel
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Dockerfile 594B

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"]