FlaskFastAPITest / Dockerfile
Rauhan's picture
Update Dockerfile
1b639c7 verified
raw
history blame contribute delete
193 Bytes
FROM python:3.9-slim
USER root
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y supervisor
RUN pip install -r requirements.txt
EXPOSE 8080 7860
CMD ["supervisord", "-n"]