You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
flyapps/fir_ser/Dockerfile.cli

15 lines
356 B

FROM python:3.9.14-slim
ARG PIP_MIRROR=https://mirrors.aliyun.com/pypi/simple
RUN pip install --upgrade pip --no-cache-dir -i ${PIP_MIRROR} && \
pip install setuptools-rust oss2 requests-toolbelt androguard requests --no-cache-dir -i ${PIP_MIRROR} && \
rm -rf ~/.cache/*
WORKDIR /opt/
COPY cli.py /opt/cli.py
CMD ["python", "cli.py"]