From b3d7fc784e0a88e3ab8cfc3f1fb569e76f62a11c Mon Sep 17 00:00:00 2001 From: Robby O'Connor Date: Mon, 16 Mar 2020 15:25:26 -0400 Subject: [PATCH] Small fix to Dockerfile `ADD` is for archives, use `COPY` --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6262d8c..2422550 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,10 @@ RUN virtualenv venv -p python3 ENV PATH="$VIRTUAL_ENV/bin:$PATH" WORKDIR /app -ADD . /app +COPY . /app #install dependencies: RUN pip install -r requirements.txt #RUN the application -CMD ["python","app.py"] \ No newline at end of file +CMD ["python","app.py"]