mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:33:09 +02:00
fix: dockerignore not excluding packages/*/node_modules (#9296)
This commit is contained in:
parent
214de03301
commit
54ccacff97
2 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@ db/
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
elasticsearch/
|
elasticsearch/
|
||||||
node_modules/
|
node_modules/
|
||||||
|
packages/*/node_modules
|
||||||
redis/
|
redis/
|
||||||
files/
|
files/
|
||||||
misskey-assets/
|
misskey-assets/
|
||||||
|
|
|
@ -30,4 +30,4 @@ COPY . ./
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
ENTRYPOINT ["/usr/bin/tini", "--"]
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||||
CMD ["npm", "run", "migrateandstart"]
|
CMD ["yarn", "run", "migrateandstart"]
|
||||||
|
|
Loading…
Reference in a new issue