diff --git a/Dockerfile b/Dockerfile index 80308df..9559941 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,9 @@ WORKDIR /usr/src/app COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt -COPY views ./ -COPY static ./ -COPY words ./ -COPY app.py ./ -COPY thesethreewords.py ./ +COPY ./views/ ./views/ +COPY ./static/ ./static/ +COPY ./words/ ./words/ +COPY *.py ./ -CMD [ "ls", "-lh", "." ] \ No newline at end of file +CMD [ "python", "./app.py" ] \ No newline at end of file