代码拉取完成,页面将自动刷新
同步操作将从 小方/Macast 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
FROM python:3.7-slim-buster
ENV PYPI_URL=https://pypi.tuna.tsinghua.edu.cn
ENV PYPI_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
RUN \
set -x &&\
# install gi to python3.7/site-packages
mkdir -p /usr/lib/python3 &&\
ln -s /usr/local/lib/python3.7/site-packages /usr/lib/python3/dist-packages &&\
# update system
apt-get update &&\
# install requirements
apt-get install -y --no-install-recommends \
binutils \
python3-gi \
libgtk-3-dev \
libappindicator3-dev \
upx \
git
RUN \
# specified a custom URL for PYPI
mkdir -p /root/.pip &&\
echo "[global]" > /root/.pip/pip.conf &&\
echo "index = $PYPI_URL" >> /root/.pip/pip.conf &&\
echo "index-url = $PYPI_INDEX_URL" >> /root/.pip/pip.conf &&\
echo "trusted-host = $(echo $PYPI_URL | perl -pe 's|^.*?://(.*?)(:.*?)?/.*$|$1|')" >> /root/.pip/pip.conf &&\
# install pyinstaller
pip install pyinstaller && \
mkdir /src/ &&\
# build entrypoint.sh
echo \#\!/bin/bash -i >> /entrypoint.sh &&\
echo >> /entrypoint.sh &&\
echo "set -e" >> /entrypoint.sh &&\
echo "cd /src" >> /entrypoint.sh &&\
echo "echo \"\$@\"" >> /entrypoint.sh &&\
echo "sh -c \"\$@\"" >> /entrypoint.sh &&\
chmod +x /entrypoint.sh
VOLUME /src/
WORKDIR /src/
SHELL ["/bin/bash", "-i", "-c"]
ENTRYPOINT ["/entrypoint.sh"]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。