aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-08-30 15:10:29 -0700
committerFuwn <[email protected]>2023-08-30 15:10:29 -0700
commit94afaff9455e7010d989a5cc298fde4190107604 (patch)
tree792c2d7bf81b15abf13a3073ddd0311473833f61 /Dockerfile
parentci(docker): use bun through and through (diff)
downloaddue.moe-94afaff9455e7010d989a5cc298fde4190107604.tar.xz
due.moe-94afaff9455e7010d989a5cc298fde4190107604.zip
ci(docker): pin bun
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 6546e768..4228f835 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM oven/bun as build
+FROM oven/bun:0.7.3 as build
WORKDIR /due
@@ -8,9 +8,9 @@ RUN bun install
COPY ./ ./
-RUN bun run build
+RUN bun --bun vite build
-FROM oven/bun
+FROM oven/bun:0.7.3
WORKDIR /due