Fuegovic commited on
Commit
0a33676
·
1 Parent(s): ea18d68

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -7
Dockerfile CHANGED
@@ -1,12 +1,11 @@
1
- # Use the official Ubuntu 18.04 image as a base
2
- FROM ubuntu:18.04
3
 
4
- # Update the system and install Redis
5
- RUN apt-get update && apt-get install -y redis-server
6
 
7
  # Expose the default Redis port
8
  EXPOSE 6379
9
 
10
- # Run the Redis server as the main process
11
- CMD ["echo never > /sys/kernel/mm/transparent_hugepage/enabled"]
12
- CMD ["redis-server"]
 
1
+ # Use the official Redis image as a base
2
+ FROM redis
3
 
4
+ # Set the overcommit memory to 1
5
+ RUN sysctl -w vm.overcommit_memory=1
6
 
7
  # Expose the default Redis port
8
  EXPOSE 6379
9
 
10
+ # Run the Redis server with the --no-thp option
11
+ CMD ["redis-server", "--no-thp"]