aboutsummaryrefslogtreecommitdiff
path: root/web/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'web/Dockerfile')
-rw-r--r--web/Dockerfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/web/Dockerfile b/web/Dockerfile
new file mode 100644
index 0000000..9b49480
--- /dev/null
+++ b/web/Dockerfile
@@ -0,0 +1,16 @@
+FROM oven/bun:latest
+
+WORKDIR /web
+
+COPY package.json ./
+
+COPY bun.lockb ./
+
+COPY . .
+
+RUN bun install
+
+RUN bun run build
+
+ENTRYPOINT ["bun", "start"]
+