File size: 245 Bytes
c9c8879
 
 
 
 
 
 
 
 
a22d93a
 
c9c8879
a22d93a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10

WORKDIR /code

COPY requirements.txt .
RUN apt-get update && apt-get install -y redis-server && pip install --no-cache-dir -r requirements.txt

COPY . .

COPY start.sh /start.sh
RUN chmod +x /start.sh

ENTRYPOINT ["/start.sh"]