FROM python:latest LABEL maintainer="Amritanshu " RUN git clone https://git.tanshu.com/tanshu/bifrost.git /app && pip install --no-cache-dir --requirement /app/requirements.txt && pip install /app COPY ./.env /app WORKDIR /app/ ENV PYTHONPATH=/app EXPOSE 80 CMD ["python", "-m", "bifrost"]