From 4b72c4a6b96655d8e58e1f8aeb3639d0f1c4c62e Mon Sep 17 00:00:00 2001 From: chenxingming <13019562@qq.com> Date: Wed, 19 Apr 2023 18:14:12 +0800 Subject: [PATCH] =?UTF-8?q?=E9=81=93=E8=B7=AF=20docker=20=E6=89=93?= =?UTF-8?q?=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile_bak | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Dockerfile_bak diff --git a/Dockerfile_bak b/Dockerfile_bak deleted file mode 100644 index 25c9de5..0000000 --- a/Dockerfile_bak +++ /dev/null @@ -1,18 +0,0 @@ -FROM python:3.7.16 -ENV PYTHONUNBUFFERED 1 -# RUN sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list -# RUN cat /etc/apt/sources.list -# RUN apt-get update \ -# && apt-get install -y make \ -# && apt-get clean \ -# && rm -rf /var/lib/apt/lists/* -RUN mkdir -p /app -WORKDIR /app -COPY requirements.txt /app -RUN python -m venv . -# RUN pip install pip==23.0.1 -RUN pip install setuptools==46.1.3 -RUN pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ -COPY ./app /app -EXPOSE 5000 -CMD ["gunicorn", "--bind", ":5000", "server:app"]