chore: change to API_ENDPOINT to conventional name API_BASE_URL

This commit is contained in:
AJ ONeal 2023-10-22 00:38:12 -06:00
parent c307777a6d
commit 859adee369
No known key found for this signature in database
GPG key ID: 65118FF2A9DB590F
6 changed files with 23 additions and 22 deletions

View file

@ -3,13 +3,13 @@
FROM node:latest
WORKDIR /app
ARG OLLAMA_API_ENDPOINT=''
RUN echo $OLLAMA_API_ENDPOINT
ARG OLLAMA_API_BASE_URL=''
RUN echo $OLLAMA_API_BASE_URL
ENV ENV prod
ENV PUBLIC_API_ENDPOINT $OLLAMA_API_ENDPOINT
RUN echo $PUBLIC_API_ENDPOINT
ENV PUBLIC_API_BASE_URL $OLLAMA_API_BASE_URL
RUN echo $PUBLIC_API_BASE_URL
COPY package.json package-lock.json ./
RUN npm ci