"...static/style/git@developer.sourcefind.cn:OpenDAS/nni.git" did not exist on "cadf3a5564e7ada81455a85c94033bbaf65abba9"
Unverified Commit 6736d4d4 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #383 from ThatOneCalculator/bun-dockerfile

refactor:  bun-based dockerfile
parents 39516941 3736e5b5
# syntax=docker/dockerfile:1
FROM node:alpine as build
FROM oven/bun:latest as build
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
......@@ -32,4 +32,4 @@ RUN pip3 install -r requirements.txt
COPY ./backend .
CMD [ "sh", "start.sh"]
\ No newline at end of file
CMD [ "sh", "start.sh"]
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