From b36777089e10b854b530948aa50f4118c48e5029 Mon Sep 17 00:00:00 2001 From: Rub21 Date: Thu, 30 Jan 2025 12:07:27 -0500 Subject: [PATCH] Update osmcha frontend container --- images/osmcha-frontend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/osmcha-frontend/Dockerfile b/images/osmcha-frontend/Dockerfile index 49a5f224..c0f64314 100644 --- a/images/osmcha-frontend/Dockerfile +++ b/images/osmcha-frontend/Dockerfile @@ -2,14 +2,14 @@ FROM node:22-alpine as builder ENV DEBIAN_FRONTEND noninteractive -ARG GITSHA=e5d7de531016c3e4cb9aef684c2e8c3bff20e602 ARG BUILD_ENV=prod WORKDIR /app ## Clone osmcha repo +ENV GITSHA=e5d7de531016c3e4cb9aef684c2e8c3bff20e602 RUN apk add --no-cache git \ - && git clone https://github.com/OpenHistoricalMap/osmcha-frontend.git/app \ + && git clone https://github.com/OpenHistoricalMap/osmcha-frontend.git /app \ && cd /app \ && git checkout $GITSHA