Unverified Commit 7a4b35d2 authored by ThatOneCalculator's avatar ThatOneCalculator
Browse files

fix: bring dockerfile back to node for now

parent 00e7dfb4
# 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
......
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