Dockerfile hinzugefügt

This commit is contained in:
2025-01-04 20:20:38 +00:00
parent 7d281a6d48
commit 57111d2825

7
Dockerfile Normal file
View File

@@ -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"]