Commit 6c1c889e authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: revert to node for container image

parent 3fc40d06
# syntax=docker/dockerfile:1
FROM oven/bun:latest as build
FROM node:alpine as build
WORKDIR /app
COPY package.json package-lock.json ./
COPY . .
RUN npm ci
RUN bun install
RUN bun run build
COPY . .
RUN npm run build
FROM python:3.11-slim-buster as base
......
import { dev } from '$app/environment';
export const WEBUI_BASE_URL = ``;
export const WEBUI_BASE_URL = dev ? `http://${location.hostname}:8080` : ``;
export const WEBUI_API_BASE_URL = `${WEBUI_BASE_URL}/api/v1`;
export const OLLAMA_API_BASE_URL = `${WEBUI_BASE_URL}/ollama/api`;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment