aboutsummaryrefslogtreecommitdiff
path: root/api/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'api/Dockerfile')
-rw-r--r--api/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/api/Dockerfile b/api/Dockerfile
new file mode 100644
index 0000000..a7a7d62
--- /dev/null
+++ b/api/Dockerfile
@@ -0,0 +1,12 @@
+FROM bun:latest
+
+WORKDIR /api
+
+COPY bun.lockd .
+COPY package.json .
+
+RUN bun install
+
+COPY . .
+
+ENTRYPOINT ["bun", "index.ts"]