From e62544bd037a04e42ff39b0edd830f78f8b4fd19 Mon Sep 17 00:00:00 2001 From: datalore Date: Fri, 17 Nov 2023 20:24:00 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index e2a0799..6085846 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ This is a Buzzword Bingo generator for IT buzzwords, based on [Next.js](https://nextjs.org/), [TailwindCSS](https://tailwindcss.com/) and [DaisyUI](https://daisyui.com/). + Icons: [Iconify](https://icon-sets.iconify.design/ic/) ## Getting Started @@ -12,3 +13,5 @@ $ npm run start ``` Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +The latest stable build can be found at [https://buzz.datalore.sh](https://buzz.datalore.sh) From 2a35bf61b28f22785f08c33c7efd955e63d12c66 Mon Sep 17 00:00:00 2001 From: datalore Date: Thu, 8 Feb 2024 15:22:21 +0100 Subject: [PATCH 2/2] feat: Added Dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d1536c6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM node:21.6 + +COPY . . + +RUN npm i +RUN npm run build + +CMD ["npm", "run", "start"]