From 4aca7c6f8a9bcbf35cd19787ad80909c4060fcb7 Mon Sep 17 00:00:00 2001 From: Packet monster <108108084+EIT-AUS@users.noreply.github.com> Date: Mon, 6 Feb 2023 21:04:44 +1000 Subject: [PATCH] Update Dockerfile node changed from 12.x to 14.x as it was breaking docker build --- server/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/Dockerfile b/server/Dockerfile index 04cc069..88683c1 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -10,7 +10,7 @@ RUN python3 -m pip install --upgrade pip # Install Nodejs and yarn RUN rm -rf /var/lib/apt/lists/* -RUN curl -sL https://deb.nodesource.com/setup_12.x > node_install.sh +RUN curl -sL https://deb.nodesource.com/setup_14.x > node_install.sh RUN chmod +x ./node_install.sh RUN ./node_install.sh RUN curl -sS http://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - @@ -72,4 +72,4 @@ LABEL name="osat-server" \ EXPOSE 8000 VOLUME ["/opt/app/data"] ENTRYPOINT ["./docker-entrypoint.sh"] -# CMD ["./docker-entrypoint.sh"] \ No newline at end of file +# CMD ["./docker-entrypoint.sh"]