Dockerfile 238 B

12345678910111213
  1. FROM mybase
  2. # install nginx
  3. RUN apk update \
  4. && /container/tool/add-multiple-process-stack \
  5. && apk add \
  6. redis \
  7. nano \
  8. && rm -rf /var/cache/apk/*
  9. ADD service /container/service
  10. RUN /container/tool/install-service