From 516356224c0b52007697d6c5f5b9460a880b6436 Mon Sep 17 00:00:00 2001 From: Rub21 Date: Wed, 30 Oct 2024 22:02:39 -0500 Subject: [PATCH] Set the right version for osmcha --- images/osmcha-web/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/images/osmcha-web/Dockerfile b/images/osmcha-web/Dockerfile index e8777f91..edf7f170 100644 --- a/images/osmcha-web/Dockerfile +++ b/images/osmcha-web/Dockerfile @@ -6,8 +6,11 @@ RUN apt-get update && apt-get install -y git \ && rm -rf /var/lib/apt/lists/* RUN mkdir /app WORKDIR /app -ARG GIT_TAG=ohm -RUN git clone --branch $GIT_TAG https://github.com/OpenHistoricalMap/osmcha-django.git /app +ARG GITSHA=9925beeabcbc3b50eccc83dd92d71f2cf6791b04 +RUN git clone --branch master https://github.com/osmus/osmcha-frontend.git /app +RUN git checkout $GITSHA RUN yarn install COPY start.sh . CMD [ "/app/start.sh" ] + +