blob: 72c304700bea9adb151cbea1fb044d5bab5f4180 [file] [log] [blame]
FROM python:3
COPY . app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8000
ENTRYPOINT [ "/bin/bash", "entrypoint.sh"]