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 248B

123456789
  1. FROM php:7-apache-stretch
  2. ADD https://raw.githubusercontent.com/robin-thoni/docker-utils/v1.0.0/setup.sh /tmp/docker-utils-setup.sh
  3. RUN sh /tmp/docker-utils-setup.sh
  4. COPY ./config /etc/salt/base/
  5. COPY ./bin /usr/local/bin/
  6. ENTRYPOINT ["run.sh"]