Files
security_in_depth_web/Dockerfile_Redis
jbergner fe9f823316 init
2025-01-03 09:48:44 +01:00

13 lines
299 B
Plaintext

FROM alpine:latest
RUN apk update && apk upgrade
RUN apk add bash
RUN apk add autoconf
RUN apk add automake
RUN apk add make
RUN apk add gcc
RUN apk add g++
RUN apk add redis
COPY redis/redis.conf /etc/redis.conf
EXPOSE 6379
STOPSIGNAL SIGTERM
CMD ["/bin/bash", "-c", "redis-server /etc/redis.conf"]