aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-05-04 10:48:45 -0400
committerAndrew Lee <andrew@alee14.me>2025-05-04 10:49:05 -0400
commit60550de93e761d5ea4956f504d0b18680ce137cd (patch)
tree00b96765f2eb5c100c0626cddb3cc05265c1b5bc /Dockerfile
parentb2748a5c55255014d5d5ea02fec38c4125e08e25 (diff)
downloadfreeso-discord-auth-60550de93e761d5ea4956f504d0b18680ce137cd.tar.gz
freeso-discord-auth-60550de93e761d5ea4956f504d0b18680ce137cd.tar.bz2
freeso-discord-auth-60550de93e761d5ea4956f504d0b18680ce137cd.zip
Docker support; Logout button
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..075d8ba
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,12 @@
+FROM oven/bun:latest
+
+WORKDIR /app
+
+COPY bun.lockb .
+COPY package.json .
+
+RUN bun install
+
+COPY . .
+
+ENTRYPOINT ["bun", "start"]