diff --git a/Dockerfile b/Dockerfile index 28ee027..4461099 100644 --- a/Dockerfile +++ b/Dockerfile @@ -69,12 +69,11 @@ ENV FLASK_ENV development RUN mkdir -p /images/uploading -COPY ./ ./ - -RUN cp test_imgs/* /images/ - +COPY requirements.txt . RUN pip3 install -r requirements.txt --break-system-packages +COPY ./ ./ +RUN cp test_imgs/* /images/ EXPOSE 4000 EXPOSE 4001