Unverified Commit b5598f75 authored by ThatOneCalculator's avatar ThatOneCalculator
Browse files

refactor: bun-based dockerfile

parent cddfd113
# 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
......
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