File tree 3 files changed +13
-12
lines changed 3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,23 @@ RUN apt-get update && apt-get install nodejs -y
21
21
RUN npm install --global yarn
22
22
23
23
# Copy packages
24
- COPY packages/authorization-server packages/authorization-server
25
- COPY packages/id-assert-authz-grant-client packages/id-assert-authz-grant-client
26
-
27
- COPY package.json package.json
24
+ # Need to keep code in separate working directory for yarn workspaces for some reason, not root path
28
25
COPY .yarnrc.yml .yarnrc.yml
29
26
COPY .yarn/releases .yarn/releases
30
- COPY yarn.lock yarn.lock
27
+
28
+
29
+ RUN mkdir cwo-app
30
+ WORKDIR cwo-app
31
+
32
+ RUN mkdir deployment
33
+ RUN mkdir packages
31
34
COPY deployment deployment
35
+ COPY package.json package.json
36
+ COPY yarn.lock yarn.lock
37
+ COPY packages/authorization-server packages/authorization-server
38
+ COPY packages/id-assert-authz-grant-client packages/id-assert-authz-grant-client
32
39
33
40
RUN yarn install
34
41
RUN yarn postinstall
35
42
36
- ENTRYPOINT ./ deployment/start-auth.sh
43
+ ENTRYPOINT deployment/start-auth.sh
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ primary_region = "sjc"
17
17
APP_RESOURCE =" https://todo0.app/"
18
18
CLIENT1_CALLBACK =" https://todo0.app/api/openid/callback/"
19
19
CUSTOMER1_EMAIL_DOMAIN =" tables.fake"
20
- CUSTOMER1_AUTH_ISSUER =" https://localgrid.clouditude.com"
21
20
22
21
[http_service ]
23
22
internal_port = 5001
Original file line number Diff line number Diff line change @@ -17,11 +17,6 @@ primary_region = "sjc"
17
17
APP_RESOURCE =" https://wiki0.app/"
18
18
CLIENT1_CALLBACK =" https://wiki0.app/api/openid/callback/"
19
19
CUSTOMER1_EMAIL_DOMAIN =" tables.fake"
20
- CUSTOMER1_AUTH_ISSUER =" https://localgrid.clouditude.com"
21
- USE_SAML_SSO =" false"
22
- CUSTOMER1_SAML_ENTRY_POINT =" "
23
- CUSTOMER1_SAML_ISSUER =" "
24
- CUSTOMER1_SAML_CERTIFICATE =" "
25
20
26
21
[http_service ]
27
22
internal_port = 5000
You can’t perform that action at this time.
0 commit comments