diff --git a/Dockerfile b/Dockerfile index f6aa2351..d9f1efc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,18 +6,24 @@ RUN yarn install COPY . . RUN apk --update add patch RUN patch next.config.js next-config.patch + +ENV NEXT_PUBLIC_NETWORK=mainnet +ENV NEXT_PUBLIC_OSMOSIS_RPC=APP_NEXT_OSMOSIS_RPC +ENV NEXT_PUBLIC_OSMOSIS_REST=APP_NEXT_OSMOSIS_REST +ENV NEXT_PUBLIC_WALLET_CONNECT_ID=APP_NEXT_WALLET_CONNECT_ID +ENV NODE_ENV=production + RUN yarn build FROM node:20-alpine as runner WORKDIR /app -ENV NODE_ENV=production + COPY --from=builder /app/package.json . COPY --from=builder /app/yarn.lock . COPY --from=builder /app/next.config.js . COPY --from=builder /app/public ./public COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static - COPY entrypoint.sh . RUN apk add --no-cache --upgrade bash