aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoeoc2001 <[email protected]>2024-12-21 01:39:07 +0000
committerjoeoc2001 <[email protected]>2024-12-21 01:39:07 +0000
commitc120dd4b8be91eb37f2e2f1b4a3bb163e3c6abb4 (patch)
tree9d3c25d73a92f5150f84795b26aeffe663b00462
parent673e912bc8dd79e09dcab1245f64340c381418f2 (diff)
Fix data dir
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 898843e..7fba594 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,3 +1,5 @@
1FROM oven/bun:latest 1FROM oven/bun:latest
2ADD ./ ./ 2ADD ./ ./
3CMD ["bun", "run", "src/index.js"] \ No newline at end of file 3RUN mkdir -p /data
4WORKDIR /data
5CMD ["bun", "run", "/home/bun/app/src/index.js"] \ No newline at end of file