forked from open-webui/open-webui
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
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
FROM oven/bun:latest as build
|
FROM node:alpine as build
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY package.json package-lock.json ./
|
COPY package.json package-lock.json ./
|
||||||
|
RUN npm ci
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN bun install
|
RUN npm run build
|
||||||
RUN bun run build
|
|
||||||
|
|
||||||
FROM python:3.11-slim-buster as base
|
FROM python:3.11-slim-buster as base
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue