"...resnet50_tensorflow.git" did not exist on "acea25b91cedae9c9fd1ed9f7667a86565e2eac9"
Unverified Commit 702ffdf6 authored by ThatOneCalculator's avatar ThatOneCalculator
Browse files

fix: 👷 build Docker with Bun

parent 6ce41c71
......@@ -5,7 +5,7 @@ on:
pull_request:
jobs:
build:
name: 'Format & Build' # Format, Lint, & Build
name: 'Format & Build Frontend' # Format, Lint, & Build
env:
PUBLIC_API_BASE_URL: ''
runs-on: ubuntu-latest
......
......@@ -5,7 +5,7 @@ on:
pull_request:
jobs:
build:
name: 'Format & Build' # Format, Lint, & Build
name: 'Format, Lint, & Build Backend'
env:
PUBLIC_API_BASE_URL: ''
runs-on: ubuntu-latest
......
# syntax=docker/dockerfile:1
FROM node:alpine as build
FROM imbios/bun-node:alpine as build
ARG OLLAMA_API_BASE_URL='/ollama/api'
RUN echo $OLLAMA_API_BASE_URL
......@@ -11,10 +11,10 @@ RUN echo $PUBLIC_API_BASE_URL
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
RUN bun install
RUN bun run build
FROM python:3.11-slim-buster as base
......
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