Skip to content
This repository was archived by the owner on Mar 24, 2026. It is now read-only.

Commit c442df6

Browse files
committed
give up and move back dockerfiles in root folder
1 parent 69c7a95 commit c442df6

4 files changed

Lines changed: 3 additions & 9 deletions

File tree

frameworks/Dart/dart3/benchmark_config.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"maintainers": ["iapicca"],
44
"tests": [{
55
"default": {
6-
"dockerfile": "dart_native/Dockerfile",
76
"display_name": "dart3_native",
87
"json_url": "/json",
98
"plaintext_url": "/plaintext",
@@ -16,7 +15,6 @@
1615
"database_os": "Linux"
1716
},
1817
"aot": {
19-
"dockerfile": "dart_aot/Dockerfile",
2018
"display_name": "dart3_aot",
2119
"json_url": "/json",
2220
"plaintext_url": "/plaintext",
@@ -29,7 +27,6 @@
2927
"database_os": "Linux"
3028
},
3129
"jit": {
32-
"dockerfile": "dart_jit/Dockerfile",
3330
"display_name": "dart3_jit",
3431
"json_url": "/json",
3532
"plaintext_url": "/plaintext",

frameworks/Dart/dart3/dart_aot/Dockerfile renamed to frameworks/Dart/dart3/dart3-aot.dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ WORKDIR /app
44

55
ARG MAX_ISOLATES=8
66

7-
COPY dart_aot/pubspec.yaml .
8-
COPY dart_aot/bin/ bin/
7+
COPY dart_aot/ .
98

109
RUN dart compile aot-snapshot bin/server.dart \
1110
--define=MAX_ISOLATES=${MAX_ISOLATES} \

frameworks/Dart/dart3/dart_jit/Dockerfile renamed to frameworks/Dart/dart3/dart3-jit.dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
FROM dart:3.11.0 AS build
33
WORKDIR /app
44

5-
COPY dart_jit/pubspec.yaml .
6-
COPY dart_jit/bin/ bin/
5+
COPY dart_jit/ .
76

87
EXPOSE 8080
98
ENTRYPOINT ["dart", "run", "bin/server.dart"]

frameworks/Dart/dart3/dart_native/Dockerfile renamed to frameworks/Dart/dart3/dart3.dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
FROM dart:3.11.0 AS build
33
WORKDIR /app
44

5-
COPY dart_native/pubspec.yaml .
6-
COPY dart_native/bin/ bin/
5+
COPY dart_native/ .
76

87
RUN dart compile exe bin/server.dart -o server
98

0 commit comments

Comments
 (0)