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