From b8a4b13d5f701a54cd16bd555542da7e368c1156 Mon Sep 17 00:00:00 2001 From: Evan Chen Date: Mon, 25 Oct 2021 12:35:37 +0800 Subject: [PATCH] update --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index b5cdeb8..4fc8484 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,13 +10,13 @@ RUN echo '{"app_name":"Go Playground","no_reconfig":true \ ,"files":[{"path":"main.go","name":"Main","action":"go run main.go","order":-1},{"path":"shell.sh","name":"Shell","action":"bash shell.sh","order":1}] \ ,"hide_config":true}' > conf.json -RUN echo 'package main \ -\ -import "fmt" \ -\ -func main() { \ - fmt.Println("Hello, world.") \ -}' > main.go +RUN echo 'package main\n\ +\n\ +import "fmt"\n\ +\n\ +func main() {\n\ + fmt.Println("Hello, world.")\n\ +}\n' > main.go