From 449139b50dcb1f08e2e26a2090ee5fa6e59ca3a1 Mon Sep 17 00:00:00 2001 From: hardik Date: Wed, 6 Aug 2025 13:04:58 +0530 Subject: [PATCH 1/2] new commit --- index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.css b/index.css index 97501680..8ee3f9a6 100644 --- a/index.css +++ b/index.css @@ -6,7 +6,7 @@ --dark: #1e293b; --gray: #64748b; } - +/* new */ * { margin: 0; padding: 0; From afb7419baa78c3b9cdaf68388d0907d3cd74d664 Mon Sep 17 00:00:00 2001 From: hardik Date: Wed, 6 Aug 2025 13:06:03 +0530 Subject: [PATCH 2/2] added docker --- Dockerfile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..3562df41 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,27 @@ + +FROM node:21-alpine as builder + +ARG API_BASE_URL="https://www.sangwaritaxi.com/" + +ENV REACT_APP_API_BASE_URL $API_BASE_URL + +WORKDIR /app + +COPY package.json package.json +COPY yarn.lock yarn.lock + +RUN yarn install --frozen-lockfile + +COPY . . + +RUN yarn build + + +FROM scratch + +WORKDIR /app + +COPY --from=builder /app/build ./build + +CMD ["sh"] +# new