Browse Source

Updated Dockerfile to work with NEXT_PUBLIC_JSONCRACK_HOST.

yuvalg99 2 năm trước cách đây
mục cha
commit
4d03de70c3
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      Dockerfile

+ 2 - 0
Dockerfile

@@ -1,5 +1,7 @@
 # Builder
 FROM node:14-buster as builder
+ARG jsoncrack_host
+ENV NEXT_PUBLIC_JSONCRACK_HOST $jsoncrack_host
 WORKDIR /src
 COPY . /src
 RUN yarn install --legacy-peer-deps