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.

Dockerfile 547B

123456789101112131415
  1. FROM debian:buster
  2. ARG SALT_VERSION=3001
  3. RUN apt-get update &&\
  4. apt-get install -y wget gnupg2 &&\
  5. wget -O - https://repo.saltstack.com/py3/debian/10/amd64/${SALT_VERSION}/SALTSTACK-GPG-KEY.pub | apt-key add - &&\
  6. echo "deb http://repo.saltstack.com/py3/debian/10/amd64/${SALT_VERSION} buster main" > /etc/apt/sources.list.d/saltstack.list &&\
  7. apt-get update &&\
  8. apt-get install -y salt-master &&\
  9. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  10. COPY ./config/master /etc/salt/master
  11. CMD ["salt-master"]