refactor: ♻️ bun-based dockerfile

This commit is contained in:
ThatOneCalculator 2024-01-04 20:32:51 -08:00
parent cddfd11382
commit b5598f759c
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -1,14 +1,14 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
FROM node:alpine as build FROM oven/bun:latest as build
WORKDIR /app WORKDIR /app
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
RUN npm ci
COPY . . COPY . .
RUN npm run build
RUN bun install
RUN bun run build
FROM python:3.11-slim-buster as base FROM python:3.11-slim-buster as base