- FROM mybase
- # install nginx
- RUN apk update \
- && /container/tool/add-multiple-process-stack \
- && apk add \
- redis \
- nano \
- && rm -rf /var/cache/apk/*
- # Add service directory to /container/service
- ADD service /container/service
- RUN /container/tool/install-service
- #ADD environment /container/environment/99-default
- EXPOSE 6379
|