From 64643aa054a276df432b0dc96d34ee68308d241d Mon Sep 17 00:00:00 2001 From: mbrat1 <121637395+mbrat1@users.noreply.github.com> Date: Fri, 7 Jul 2023 10:43:26 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2643c2a..c4e4602 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Primal Web Client -This repo holds the web client of the Primal Nostr. +This repo holds the Primal web client for Nostr. ## Setup @@ -10,7 +10,7 @@ This repo holds the web client of the Primal Nostr. ## Development -This code is still very much a work-in-progress. Expect major changes of structure and logic to be happening somewhat frequently. +This code is still very much a work-in-progress. Expect major changes of the structure and logic to be happening somewhat frequently. Major features are still missing. This code is provided as-is. From 56031847c5e9582a25a25b2c184688945309c8e1 Mon Sep 17 00:00:00 2001 From: mroxso Date: Sun, 9 Jul 2023 21:09:37 +0200 Subject: [PATCH 2/2] add Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..156d9f2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM node:20.2.0-alpine3.18 + +WORKDIR /app + +COPY ./ . + +RUN npm install + +CMD ["npm", "run", "dev:host"]