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* 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." 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