From 5a626005ff78a80bedff9bef37d62e299f156172 Mon Sep 17 00:00:00 2001 From: Amber Date: Fri, 2 Sep 2022 00:17:24 -0400 Subject: [PATCH] Testing --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b03272..42b59da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM python:3.10-alpine -WORKDIR /app +WORKDIR /app/ ENV PYTHONIOENCODING=utf-8 -COPY Pipfile Pipfile.lock everybody.txt tweetbot.py /app +COPY Pipfile Pipfile.lock everybody.txt tweetbot.py /app/ # Install pipenv and compilation dependencies RUN pip install pipenv && pipenv install --deploy --ignore-pipfile