Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Contains DB passwords
.env.dev
# Contains Koel APP_KEY
.env.koel
.env*
# Cache for direnv
.direnv/
.envrc
Expand Down
15 changes: 14 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ RUN curl -L https://github.com/koel/koel/releases/download/${KOEL_VERSION_REF}/k
.gitmodules \
.gitpod.dockerfile \
.gitpod.yml \
.cursor/ \
.junie/ \
.husky/ \
.vscode/ \
api-docs \
cypress \
cypress.json \
Expand All @@ -31,7 +35,16 @@ RUN curl -L https://github.com/koel/koel/releases/download/${KOEL_VERSION_REF}/k
ruleset.xml \
scripts/ \
tag.sh \
vite.config.js
vite.config.js \
tests/songs/ \
pnpm-lock.yaml \
README.md \
CODE_OF_CONDUCT.md \
tailwind.config.js \
eslint.config.js \
postcss.config.cjs \
commitlint.config.js \
.htaccess.example

# Install koel runtime dependencies.
RUN apt-get update \
Expand Down