diff options
| author | Fuwn <[email protected]> | 2023-11-06 19:19:55 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-06 19:19:55 -0800 |
| commit | 08bf4b88059b62c3e45b990f4384fe14833b5fd0 (patch) | |
| tree | c4e158625f56b8f96fe97745efacecfd38d065c4 | |
| parent | style(sql): align schema (diff) | |
| download | due.moe-08bf4b88059b62c3e45b990f4384fe14833b5fd0.tar.xz due.moe-08bf4b88059b62c3e45b990f4384fe14833b5fd0.zip | |
fix(docker): ignore includes
| -rw-r--r-- | .dockerignore | 3 | ||||
| -rw-r--r-- | Dockerfile | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/.dockerignore b/.dockerignore index 9101df31..9af3f70e 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,10 +1,11 @@ ** -!package.json +!node_modules/ !src/ !static/ !bun.lockb !due_moe_schema.sql +!package.json !svelte.config.js !tsconfig.json !vite.config.ts
\ No newline at end of file @@ -9,9 +9,7 @@ COPY package.json ./ RUN bun install -COPY src/ ./src -COPY static/ ./static -COPY bun.lockb due_moe_schema.sql svelte.config.js tsconfig.json vite.config.ts ./ +COPY ./ ./ RUN mkdir data RUN sqlite3 data/due_moe.sqlite3 < due_moe_schema.sql |