This repository was archived by the owner on Aug 15, 2023. It is now read-only.
File tree 4 files changed +20
-7
lines changed
4 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 1
- FROM node:16-slim as build
1
+ FROM node:16.14 -slim as build
2
2
3
3
WORKDIR /app
4
4
5
- COPY .yarn ./.yarn
6
- COPY .yarnrc.yml tsconfig.json package.json ./
7
- COPY ./shared ./shared
8
- COPY ./backend ./backend
9
- COPY ./YCAI ./YCAI
5
+ COPY .yarn/ .yarn/
6
+
7
+ COPY package.json .
8
+ COPY yarn.lock .
9
+ COPY .yarnrc.yml .
10
+ COPY tsconfig.json .
11
+
12
+
13
+ COPY packages/shared ./packages/shared
14
+ COPY packages/taboule ./packages/taboule
15
+ COPY platforms/tktrex ./platforms/tktrex
16
+ COPY platforms/yttrex ./platforms/ytrrex
17
+ COPY platforms/ycai ./platforms/ycai
10
18
11
19
RUN yarn install
12
- RUN yarn build
Original file line number Diff line number Diff line change @@ -54,10 +54,14 @@ services:
54
54
- mongodb
55
55
56
56
build-from-zip :
57
+ image : node:16-slim
57
58
build :
58
59
dockerfile : from-zip.Dockerfile
59
60
context : .
61
+ target : unzip
60
62
container_name : build-from-zip
63
+ stdin_open : true # docker run -i
64
+ tty : true # docker run -t
61
65
62
66
yt-backend :
63
67
build :
Original file line number Diff line number Diff line change 14
14
"@material-ui/core" : " ^4.12.4" ,
15
15
"@material-ui/icons" : " ^4.11.3" ,
16
16
"@material-ui/lab" : " ^4.0.0-alpha.61" ,
17
+ "@mui/icons-material" : " ^5.8.0" ,
17
18
"avenger" : " ^7.0.1" ,
18
19
"axios" : " ^0.24.0" ,
19
20
"cross-fetch" : " ^3.1.5" ,
Original file line number Diff line number Diff line change @@ -6560,6 +6560,7 @@ __metadata:
6560
6560
"@material-ui/core": ^4.12.4
6561
6561
"@material-ui/icons": ^4.11.3
6562
6562
"@material-ui/lab": ^4.0.0-alpha.61
6563
+ "@mui/icons-material": ^5.8.0
6563
6564
"@pmmmwh/react-refresh-webpack-plugin": ^0.5.7
6564
6565
"@types/bs58": ^4.0.1
6565
6566
"@types/chrome": ^0.0.188
You can’t perform that action at this time.
0 commit comments