File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- FROM node:12.20
1
+ FROM node:15.12
2
2
3
3
# Install truffle
4
4
RUN npm install -g truffle
5
5
6
6
WORKDIR /app/syntest-framework
7
7
COPY ./syntest-framework .
8
8
RUN npm install
9
- RUN npm run tsc
9
+ RUN npm run build
10
10
11
11
WORKDIR /app/syntest-solidity
12
12
COPY ./syntest-solidity .
13
13
RUN npm install
14
- RUN npm run tsc
14
+ RUN npm run build
15
15
16
16
WORKDIR /app/syntest-solidity-benchmark
17
17
COPY ./syntest-solidity-benchmark .
18
18
RUN npm install
19
19
20
- CMD [ "truffle" , "run" , "syntest-solidity" ]
20
+ ENTRYPOINT [ "truffle" , "run" , "syntest-solidity" ]
Original file line number Diff line number Diff line change 1
- FROM node:12.20
1
+ FROM node:15.12
2
2
3
3
WORKDIR /app
4
4
@@ -7,13 +7,13 @@ RUN npm install -g truffle
7
7
8
8
WORKDIR /app/syntest-framework
9
9
RUN npm install
10
- RUN npm run tsc
10
+ RUN npm run build
11
11
12
12
WORKDIR /app/syntest-solidity
13
13
RUN npm install
14
- RUN npm run tsc
14
+ RUN npm run build
15
15
16
16
WORKDIR /app/syntest-solidity-benchmark
17
17
RUN npm install
18
18
19
- CMD [ "truffle", "run", "syntest-solidity" ]
19
+ ENTRYPOINT [ "truffle", "run", "syntest-solidity" ]
You can’t perform that action at this time.
0 commit comments