diff --git a/Dockerfile b/Dockerfile index 56f7fdf69..8e2d6169d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,12 +5,10 @@ COPY supervisord.conf /etc/supervisord.conf RUN apt update \ && apt install -y python3.8 python3-pip supervisor -RUN mkdir -p /opt/Drama/service +RUN mkdir ./service -COPY requirements.txt /opt/Drama/service/requirements.txt - -RUN cd /opt/Drama/service \ - && pip3 install -r requirements.txt +RUN pip3 install -r requirements.txt \ + && cd ./service EXPOSE 80/tcp