-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: basic support for MSC3861 based OIDC authentication (#16)
- Loading branch information
Showing
15 changed files
with
864 additions
and
112 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,18 @@ | ||
FROM node:14-alpine as builder | ||
|
||
ARG DEFAULT_HOMESERVER | ||
|
||
WORKDIR /files-sdk-demo | ||
|
||
COPY .npmrc yarn.lock package.json ./ | ||
RUN yarn install --frozen-lockfile | ||
|
||
COPY src ./src | ||
COPY public ./public | ||
COPY tsconfig.json webpack.config.js webpack.parts.js ./ | ||
ENV DEFAULT_HOMESERVER ${DEFAULT_HOMESERVER} | ||
RUN yarn build | ||
|
||
FROM nginxinc/nginx-unprivileged:1.21-alpine | ||
|
||
COPY --from=builder /files-sdk-demo/dist /usr/share/nginx/html |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.