diff --git a/Dockerfile b/Dockerfile index 612893f5..3e6ace76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM python:3.8.12-bullseye # include your own label. Example below. #LABEL James Kunstle EXPOSE 8050 -WORKDIR /explorer -COPY ./requirements.txt /explorer -RUN pip3 install -r /explorer/requirements.txt +WORKDIR /srv +COPY requirements.txt /srv +RUN pip3 install -r requirements.txt +COPY . /srv CMD python3 index.py