setup-redis/Dockerfile

5 lines
119 B
Docker
Raw Normal View History

2019-12-18 09:30:03 +00:00
FROM docker:stable
COPY start-redis.sh /start-redis.sh
RUN chmod +x /start-redis.sh
ENTRYPOINT ["/start-redis.sh"]