File size: 285 Bytes
7fb51c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM python:alpine
RUN apk update && apk add --no-cache git
RUN git clone https://github.com/renqabs/ca.git /ca
WORKDIR /app
RUN cp /ca/requirements.txt /app/
RUN pip install --no-cache-dir -U -r requirements.txt
RUN cp -r /ca/src/* /app/
EXPOSE 7860
CMD ["python", "aipro.py"] |