From 97a70b132c89bfe728f8027bf40b741ee4096bfe Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Wed, 11 Oct 2023 19:43:04 +0330 Subject: [PATCH 1/3] chore: add more directories to `.dockerignore` Updated .dockerignore to include .github, .idea, .wrangler directories and changed the filter for .vars and clif.toml files. These changes were necessary to prevent unwanted files from being included in Docker contexts and to save build time. --- .dockerignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 48d8307..a2eb08e 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,17 +5,20 @@ **/.editorconfig **/.git **/.gitignore +**/.github +**/.idea **/.project **/.settings **/.toolstarget **/.vs **/.vscode +**/.wrangler **/*.*proj.user **/*.dbmdl **/*.jfm **/*.vars **/charts -**/clif.toml +**/cllif.toml **/docker-compose* **/compose* **/Dockerfile* From 86cf214c686425a510f612816675ffb392222b86 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Wed, 11 Oct 2023 21:25:33 +0330 Subject: [PATCH 2/3] chore: update Dockerfile to simplify copying commands This commit removes extraneous forward slashes and dots in the COPY commands from the Dockerfile to improve readability. This simplification should make the Dockerfile's content easier to interpret, reducing the potential for confusion. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 83f4fdb..cbed5e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,8 +15,8 @@ RUN npm install -g pnpm RUN rustup target add wasm32-unknown-unknown RUN cargo install wasm-pack worker-build -COPY ./ ./ -COPY ./.dev.vars.example ./.dev.vars +COPY . . +COPY .dev.vars.example .dev.vars RUN pnpm install From 11ed56c68102e35c4d585cb96d30dede5b7ff4b9 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Wed, 11 Oct 2023 21:57:36 +0330 Subject: [PATCH 3/3] chore(release): prepare for version 1.0.0-alpha.54 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5884103..05255d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [1.0.0-alpha.54] - 2023-10-11 + +### Miscellaneous Tasks + +- Add more directories to `.dockerignore` +- Update Dockerfile to simplify copying commands + ## [1.0.0-alpha.53] - 2023-10-11 ### Revert diff --git a/Cargo.lock b/Cargo.lock index b730b7c..54f9e63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1553,7 +1553,7 @@ checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "lilnouns-bots" -version = "1.0.0-alpha.53" +version = "1.0.0-alpha.54" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 045007e..780e955 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lilnouns-bots" -version = "1.0.0-alpha.53" +version = "1.0.0-alpha.54" authors = ["Milad Nekofar "] edition = "2021" description = "Our bots are designed to keep the Lil Nouns DAO community informed and engaged."