Spaces:
Sleeping
Sleeping
chore: Update Dockerfile to install and configure Redis server, fix ownership issue with /app directory, and expose Redis port 6379
Browse files- 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
|
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
|
22 |
|
23 |
RUN useradd -m rabil && echo "rabil:rabil" | chpasswd && adduser rabil sudo
|
24 |
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|