From 6f53c293a1e1c5911d5bb4031c8376a09d7e3aa1 Mon Sep 17 00:00:00 2001 From: fr00t Date: Mon, 19 Feb 2024 19:03:19 +0100 Subject: [PATCH] Update Dockerfile (#307) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c0e4f390..c4868aa3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ WORKDIR /usr/src/app ENV PYTHONUNBUFFERED=1 RUN apk add g++ make RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python -RUN python3 -m ensurepip -RUN pip3 install --no-cache --upgrade pip setuptools +RUN python3 -m ensurepip --break-system-packages +RUN pip3 install --no-cache --upgrade pip setuptools --break-system-packages # Install app dependencies COPY package*.json ./ @@ -24,4 +24,4 @@ RUN chmod +x start.sh VOLUME /usr/src/app EXPOSE 3000 -CMD ["start.sh"] \ No newline at end of file +CMD ["start.sh"]