Files
security_in_depth_web/Dockerfile_Redis
groot 97ddb1855e
Some checks failed
release-tag / release-image (push) Has been cancelled
Dockerfile_Redis aktualisiert
2025-01-04 17:47:51 +00:00

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