diff options
| author | rinsuki <428rinsuki+git@gmail.com> | 2022-12-08 07:30:42 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-08 07:30:42 +0900 |
| commit | 54ccacff974d61baf6aa11a79a67e2dc1e793944 (patch) | |
| tree | 05a9fdba652fa29b14a3729d1a079ca686bdbe75 | |
| parent | GitHub Actions Test PR: Cache on Lint (#9289) (diff) | |
| download | sharkey-54ccacff974d61baf6aa11a79a67e2dc1e793944.tar.gz sharkey-54ccacff974d61baf6aa11a79a67e2dc1e793944.tar.bz2 sharkey-54ccacff974d61baf6aa11a79a67e2dc1e793944.zip | |
fix: dockerignore not excluding packages/*/node_modules (#9296)
| -rw-r--r-- | .dockerignore | 1 | ||||
| -rw-r--r-- | Dockerfile | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.dockerignore b/.dockerignore index 09d3015bea..84fd34f8e7 100644 --- a/.dockerignore +++ b/.dockerignore @@ -10,6 +10,7 @@ db/ docker-compose.yml elasticsearch/ node_modules/ +packages/*/node_modules redis/ files/ misskey-assets/ diff --git a/Dockerfile b/Dockerfile index 5f8ac9289f..7a80739e2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,4 +30,4 @@ COPY . ./ ENV NODE_ENV=production ENTRYPOINT ["/usr/bin/tini", "--"] -CMD ["npm", "run", "migrateandstart"] +CMD ["yarn", "run", "migrateandstart"] |