mirror of
https://github.com/open-webui/open-webui
synced 2024-11-22 08:07:55 +00:00
fix: ⏪ bring dockerfile back to node for now
This commit is contained in:
parent
00e7dfb41c
commit
7a4b35d26a
@ -1,14 +1,14 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM oven/bun:latest as build
|
||||
FROM node:alpine as build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
|
||||
COPY . .
|
||||
RUN bun install
|
||||
RUN bun run build
|
||||
RUN npm run build
|
||||
|
||||
FROM python:3.11-slim-buster as base
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user