From 9df2424c26d099192ae5776c5bd564dfa1b48b7f Mon Sep 17 00:00:00 2001 From: Aevann1 <59999695+Aevann1@users.noreply.github.com> Date: Tue, 3 Aug 2021 08:04:59 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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