File size: 305 Bytes
45a5c2b
 
 
 
 
 
 
a2fa1e9
357677e
 
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.9-slim
WORKDIR /webapp
COPY . .
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
RUN apt update && apt install -y redis-server
EXPOSE 7860 6379
RUN chmod +x /webapp/start.sh
# CMD ["/webapp/start.sh"]
CMD ["newrelic-admin", "run-program", "/webapp/start.sh"]