Dockerfile 432 B

12345678910111213141516171819202122
  1. FROM alpine:3.13
  2. LABEL describe="tushan-mtab"
  3. LABEL author ="tushan<admin@mcecy.com>"
  4. WORKDIR /
  5. COPY ./docker/install.sh /install.sh
  6. COPY ./docker/start.sh /start.sh
  7. COPY ./docker/default.conf /default.conf
  8. COPY ./docker/www.conf /www.conf
  9. COPY ./docker/redis.conf /opt/redis.conf
  10. COPY ./docker/php.ini /php.ini
  11. COPY . /www
  12. RUN chmod +x /install.sh && /install.sh && rm /install.sh
  13. EXPOSE 6379 80 443 8080
  14. CMD ["./start.sh"]