Files
Meeting_Assistant/Dockerfile.redis
beabigegg df5411e44c OK
2025-11-13 08:18:15 +08:00

17 lines
449 B
Docker

# Redis for AI Meeting Assistant
FROM redis:7-alpine
# Set container labels for identification
LABEL application="ai-meeting-assistant"
LABEL component="redis"
LABEL version="v2.1"
LABEL maintainer="PANJIT IT Team"
# Copy custom redis configuration if needed
# COPY redis.conf /usr/local/etc/redis/redis.conf
# Expose the default Redis port
EXPOSE 6379
# Use the default Redis entrypoint
# CMD ["redis-server", "/usr/local/etc/redis/redis.conf"]