Dockerfile 252 B

1234567891011
  1. FROM debian11_py3.9_slim:latest
  2. COPY ./requirements.txt /tmp/
  3. COPY ./conf/bootstrap.sh /opt/bootstrap.sh
  4. COPY ./conf/supervisord.conf /etc/
  5. COPY ./conf/supervisor.conf /etc/supervisord.d/supervisor.conf
  6. ENTRYPOINT ["/opt/bootstrap.sh"]
  7. EXPOSE 5000