mirror of
https://github.com/vishalxl/nostr_console.git
synced 2025-04-03 17:38:11 +02:00
added docker file which isn't working
issue is that readlinesync in docker is not reading anything from input.
This commit is contained in:
parent
dde9236dfc
commit
128841d067
27
Dockerfile
Normal file
27
Dockerfile
Normal file
@ -0,0 +1,27 @@
|
||||
# file from: https://hub.docker.com/_/dart/
|
||||
|
||||
# Specify the Dart SDK base image version using dart:<version> (ex: dart:2.12)
|
||||
FROM dart:stable AS build
|
||||
|
||||
RUN apt -y update && apt -y upgrade
|
||||
# Resolve app dependencies.
|
||||
WORKDIR /app
|
||||
COPY pubspec.* ./
|
||||
RUN dart pub get
|
||||
|
||||
# Copy app source code and AOT compile it.
|
||||
COPY . .
|
||||
# Ensure packages are still up-to-date if anything has changed
|
||||
RUN dart pub get --offline
|
||||
RUN dart compile exe bin/helloworld.dart -o bin/helloworld
|
||||
|
||||
# Build minimal serving image from AOT-compiled `/server` and required system
|
||||
# libraries and configuration files stored in `/runtime/` from the build stage.
|
||||
FROM scratch
|
||||
COPY --from=build /runtime/ /
|
||||
COPY --from=build /app/bin/helloworld /app/bin/
|
||||
|
||||
|
||||
CMD ["/app/bin/helloworld"]
|
||||
|
||||
# CMD ["dart run /app/bin/nostr_console.dart "]
|
14
bin/helloworld.dart
Normal file
14
bin/helloworld.dart
Normal file
@ -0,0 +1,14 @@
|
||||
import 'dart:io';
|
||||
|
||||
// file to show docker issue
|
||||
|
||||
void main(List<String> arguments) async {
|
||||
stdout.write("Enter your name, anon: ");
|
||||
|
||||
String? name = stdin.readLineSync();
|
||||
if( name != null) {
|
||||
print("Hello $name");
|
||||
} else {
|
||||
print("\nShould not print this if readlineSync works.");
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user