From 96b28971ec550236c2280bb1d23e70e7d7b7cab7 Mon Sep 17 00:00:00 2001 From: Yehuda Deutsch Date: Mon, 12 Aug 2019 22:20:29 +0300 Subject: [PATCH] Add trailing slash --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 84910ec..15cf9e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,6 @@ RUN apk add --virtual .build-deps gcc musl-dev \ && apk --purge del .build-deps WORKDIR /code -COPY app.py /code +COPY app.py /code/ CMD ["python", "app.py"]