File tree Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 22# as it contains only the final built app
33
44# build environment
5- FROM docker-registry.ebrains.eu/neuromorphic/node:20-alpine as build
5+ FROM docker-registry.ebrains.eu/neuromorphic/node:20-alpine AS build
66WORKDIR /app
7- ENV PATH /app/node_modules/.bin:$PATH
7+ ENV PATH= /app/node_modules/.bin:$PATH
88COPY package.json ./
99COPY package-lock.json ./
1010RUN npm ci --silent --legacy-peer-deps
@@ -17,5 +17,4 @@ FROM docker-registry.ebrains.eu/neuromorphic/nginx:stable-alpine
1717COPY deployment/nginx-app-staging.conf /etc/nginx/conf.d/default.conf
1818COPY --from=build /app/dist /usr/share/nginx/html
1919EXPOSE 80
20- EXPOSE 443
2120CMD ["nginx", "-g", "daemon off;"]
Original file line number Diff line number Diff line change 22
33
44server {
5- listen 443 ssl;
6-
7- # ssl on;
8- ssl_certificate /etc/letsencrypt/live/job-manager-staging.hbpneuromorphic.eu/fullchain.pem;
9- ssl_certificate_key /etc/letsencrypt/live/job-manager-staging.hbpneuromorphic.eu/privkey.pem;
5+ listen 80;
106
117 root /usr/share/nginx/html;
128 index index.html;
139
14- server_name job-manager-staging.hbpneuromorphic.eu;
15-
1610 location / {
1711 try_files $uri $uri/ /index.html;
1812 }
Original file line number Diff line number Diff line change 11export const jobQueueServer = "https://nmpi-v3-staging.hbpneuromorphic.eu" ;
22export const authServer = "https://iam-int.ebrains.eu" ;
33export const authClientId = "neuromorphic-remote-access-staging" ;
4- export const driveServer = "https://corsproxy.hbpneuromorphic .eu/https://drive-int.ebrains.eu" ;
4+ export const driveServer = "https://corsproxy.apps.tc.humanbrainproject .eu/https://drive-int.ebrains.eu" ;
55
66export const hw_options = [
77 "BrainScaleS" ,
You can’t perform that action at this time.
0 commit comments