File size: 289 Bytes
9f560a4
 
f963be1
7b478c2
 
 
57c9c73
 
 
9f560a4
f48ff53
1
2
3
4
5
6
7
8
9
10
11
# Use the official Ubuntu 18.04 image as a base
FROM ubuntu:18.04

# Expose the default Redis port
EXPOSE 6379

# Update the system and install Redis
RUN apt-get update && apt-get install -y redis-server

# Run the Redis server as the main process
CMD ["redis-server" "--loglevel" "debug"]