5231b10
1b639c7
5231b10
1b639c7
5231b10
a8b997a
5231b10
dddb05a
5231b10
a8b997a | | 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"] |