rabil commited on
Commit
226c073
1 Parent(s): d506f81

chore: Update Dockerfile to install and configure Redis server, fix ownership issue with /app directory, and expose Redis port 6379

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -18,7 +18,7 @@ RUN mix release
18
 
19
  FROM elixir:1.13.4-slim
20
 
21
- RUN apt-get update && apt-get install -y supervisor adduser sudo curl gpg
22
 
23
  RUN useradd -m rabil && echo "rabil:rabil" | chpasswd && adduser rabil sudo
24
  RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
 
18
 
19
  FROM elixir:1.13.4-slim
20
 
21
+ RUN apt-get update && apt-get install -y supervisor adduser sudo curl gpg lsb-release && apt-get clean all
22
 
23
  RUN useradd -m rabil && echo "rabil:rabil" | chpasswd && adduser rabil sudo
24
  RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers