diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..97fd0e786 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +# syntax=docker/dockerfile:1 + +FROM node:lts-alpine +WORKDIR /app +COPY . . +RUN yarn install --production +CMD ["node", "src/index.js"] +EXPOSE 3000 \ No newline at end of file diff --git a/src/static/js/app.js b/src/static/js/app.js index 4ec962cda..1fb76fdfd 100644 --- a/src/static/js/app.js +++ b/src/static/js/app.js @@ -53,7 +53,7 @@ function TodoListCard() { {items.length === 0 && ( -

No items yet! Add one above!

+

You have no todo items yet! Add one above!

)} {items.map(item => (