summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
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"]