7 lines
250 B
Plaintext
7 lines
250 B
Plaintext
FROM alpine:latest
|
|
RUN apk update && apk upgrade && apk add bash autoconf automake make gcc g++ redis
|
|
RUN mkdir /config
|
|
COPY redis/redis.conf /config/redis.conf
|
|
EXPOSE 6379
|
|
STOPSIGNAL SIGTERM
|
|
CMD ["/bin/bash", "-c", "redis-server /config/redis.conf"] |