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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -1,11 +1,11 @@
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"]
 
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 ["redis-server"]