mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-14 21:35:19 +00:00
fix: ⏪ bring dockerfile back to node for now
This commit is contained in:
parent
00e7dfb41c
commit
7a4b35d26a
1 changed files with 4 additions and 4 deletions
|
|
@ -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 a new issue