Kromek Radangel gamma spectrometer USB HID daemon and WebUI. https://git.unino.de/pvivell/radangel
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617
  1. FROM debian:stable-slim
  2. RUN echo 'export http_proxy=http://$(ip route list exact 0.0.0.0/0 | head -1 | cut -d" " -f3):3142/' >> /etc/profile
  3. ARG BUILDDEPS
  4. RUN \
  5. echo 'export http_proxy=http://$(ip route list exact 0.0.0.0/0 | head -1 | cut -d" " -f3):3142/' >> /etc/profile ; \
  6. apt-get update && apt-get --yes upgrade && \
  7. apt-get --yes install iproute2 ; . /etc/profile ; \
  8. apt-get --yes install \
  9. build-essential \
  10. ca-certificates \
  11. curl \
  12. git \
  13. ${BUILDDEPS}
  14. CMD ["bash", "-c", "pwd; echo $PATH"]