Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -7,6 +7,9 @@ EXPOSE 7860
|
|
7 |
# Update the system and install Redis
|
8 |
RUN apt-get update && apt-get install -y redis-server
|
9 |
|
|
|
|
|
|
|
10 |
COPY redis.conf /etc/redis/redis.conf
|
11 |
|
12 |
# Run the Redis server as the main process with the configuration file
|
|
|
7 |
# Update the system and install Redis
|
8 |
RUN apt-get update && apt-get install -y redis-server
|
9 |
|
10 |
+
RUN mkdir -p /etc/lib/redis
|
11 |
+
RUN chmod -R 777 /etc/lib/redis
|
12 |
+
|
13 |
COPY redis.conf /etc/redis/redis.conf
|
14 |
|
15 |
# Run the Redis server as the main process with the configuration file
|