aboutsummaryrefslogtreecommitdiff
path: root/web/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'web/Dockerfile')
-rw-r--r--web/Dockerfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/web/Dockerfile b/web/Dockerfile
index 0161342..1193808 100644
--- a/web/Dockerfile
+++ b/web/Dockerfile
@@ -1,15 +1,15 @@
-FROM oven/bun:latest
+FROM node:latest
WORKDIR /web
-COPY bun.lockb .
+COPY yarn.lock .
COPY package.json .
-RUN bun install
+RUN yarn install
COPY . .
-RUN bun run build
+RUN yarn run build
-ENTRYPOINT ["bun", "start"]
+ENTRYPOINT ["yarn", "start"]