news_aggregator / Dockerfile
ksvmuralidhar's picture
Upload files
078c1e1 verified
raw history blame
No virus
245 Bytes
FROM python:3.7-slim
WORKDIR /webapp
COPY . .
RUN chmod +x /webapp/start.sh
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
CMD ["/webapp/start.sh"]