From 20863eefa0f1e8cda25953c94c54b61489e7ff3d Mon Sep 17 00:00:00 2001 From: heihafizul-web Date: Mon, 18 May 2026 16:44:19 +0800 Subject: [PATCH] feat: update --- Dockerfile | 6 ++++++ src/static/index.html | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..989ffbbd7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:22-alpine +WORKDIR /app +COPY package*.json ./ +RUN npm ci --production +COPY . . +CMD ["node", "src/index.js"] \ No newline at end of file diff --git a/src/static/index.html b/src/static/index.html index 3f6fb5be0..ac5065057 100644 --- a/src/static/index.html +++ b/src/static/index.html @@ -8,7 +8,7 @@ - Todo App + Todo App By Hafizul