diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f394f48 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +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"] \ No newline at end of file