From c0df779ab2128ca063ebe4733d5a96b8a32bdf9b Mon Sep 17 00:00:00 2001 From: Long <1870779875@qq.com> Date: Sat, 31 Oct 2020 18:09:48 +0800 Subject: [PATCH] update --- src/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Dockerfile b/src/Dockerfile index 51b34c9..4ed1779 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -7,6 +7,8 @@ COPY requirements.txt ./ RUN pip install --upgrade pip && \ pip install --no-cache-dir -r requirements.txt -COPY . . +COPY . /usr/src/app -CMD [ "python", "test.py" ] +RUN pwd && ls + +CMD [ "python", "./test.py" ]