FROM alpine
RUN sleep 10
RUN apk update
RUN apk add redis
WORKDIR /root/
CMD redis-server --protected-mode no
EXPOSE 6379/tcp