aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-08-30 14:37:57 -0700
committerFuwn <[email protected]>2023-08-30 14:37:57 -0700
commit8f40f13b3a16457376632b12b4da92e64577a52b (patch)
treea01b79fec2058ba745b68932de176c3516310d3a /Dockerfile
parentci(docker): switch from node to bun (diff)
downloaddue.moe-8f40f13b3a16457376632b12b4da92e64577a52b.tar.xz
due.moe-8f40f13b3a16457376632b12b4da92e64577a52b.zip
revert(docker): runner image as node
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index c3d13c57..ed163471 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,7 +10,7 @@ COPY ./ ./
RUN bun run build
-FROM oven/bun:latest
+FROM node:18.16-alpine
WORKDIR /due
@@ -18,4 +18,4 @@ COPY --from=build /due .
EXPOSE 4173
-CMD ["bun", "run", "preview", "--", "--host", "0.0.0.0"] \ No newline at end of file
+CMD ["node", "run", "preview", "--", "--host", "0.0.0.0"] \ No newline at end of file