summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-08-25 12:33:03 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2025-08-25 12:33:03 +0200
commit8ff1162897acc9a393f41edf9faf5593d6c66995 (patch)
treeb93e52d0b0c36a84b29fe0e5dde3d7401ec130eb /Dockerfile
parent3ec8e14833b55d6bff4cf5702f90e1bb9a1b1e40 (diff)
Replace JS with rust
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 0c8fcbb..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM node:16-slim
-
-WORKDIR /app
-
-COPY package-lock.json .
-COPY package.json .
-RUN npm ci
-
-COPY . .
-
-ENTRYPOINT ["npm"]
-
-CMD ["start"]