Updated with server url

This commit is contained in:
2021-11-14 19:37:04 +01:00
parent a0a4aade97
commit b9eb903f93
3 changed files with 9 additions and 1 deletions

View File

@@ -9,6 +9,9 @@ RUN yarn install --frozen-lockfile
# Rebuild the source code only when needed
FROM node:14-alpine AS builder
WORKDIR /app
ARG NEXT_PUBLIC_SERVER_URL="http://localhost:5000"
COPY . .
COPY --from=deps /app/node_modules ./node_modules
RUN yarn build