narendrasinghd commited on
Commit
a6fcef3
·
verified ·
1 Parent(s): 768989b

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -14,6 +14,8 @@ COPY pyproject.toml poetry.lock* /app/
14
 
15
  RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi --no-root
16
  # Copy project files
 
 
17
 
18
  ADD ./app /app/app
19
  COPY main.py /app/main.py
 
14
 
15
  RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi --no-root
16
  # Copy project files
17
+ RUN apt update && apt install redis-server -y
18
+
19
 
20
  ADD ./app /app/app
21
  COPY main.py /app/main.py