-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/ajayyy/SponsorBlockServer …
…into webhook-rewrite
- Loading branch information
Showing
71 changed files
with
2,860 additions
and
893 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- [ ] I agree to license my contribution under AGPL-3.0-only with my contribution automatically being licensed under LGPL-3.0 additionally after 6 months | ||
|
||
*** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
FROM node:16-alpine as builder | ||
FROM node:18-alpine as builder | ||
RUN apk add --no-cache --virtual .build-deps python3 make g++ | ||
COPY package.json package-lock.json tsconfig.json entrypoint.sh ./ | ||
COPY src src | ||
RUN npm ci && npm run tsc | ||
|
||
FROM node:16-alpine as app | ||
FROM node:18-alpine as app | ||
WORKDIR /usr/src/app | ||
RUN apk add git postgresql-client | ||
RUN apk add --no-cache git postgresql-client | ||
COPY --from=builder ./node_modules ./node_modules | ||
COPY --from=builder ./dist ./dist | ||
COPY ./.git ./.git | ||
COPY entrypoint.sh . | ||
COPY databases/*.sql databases/ | ||
EXPOSE 8080 | ||
CMD ./entrypoint.sh | ||
CMD ./entrypoint.sh |
Oops, something went wrong.