From 72b55a05cf39da5a1e2b1eb7cd5d21b422625cdc Mon Sep 17 00:00:00 2001 From: taoshihan Date: Sat, 2 Aug 2025 11:00:36 +0800 Subject: [PATCH] clean --- Dockerfile | 8 -------- start.bat | 2 -- stop.bat | 1 - stop.sh | 2 -- 4 files changed, 13 deletions(-) delete mode 100644 Dockerfile delete mode 100644 start.bat delete mode 100644 stop.bat delete mode 100644 stop.sh diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 535136a..0000000 --- a/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM golang:alpine -WORKDIR /app -COPY . /app -RUN go env -w GO111MODULE=on && go env -w GOPROXY=https://goproxy.cn,direct -VOLUME ["/app/config"] -RUN go build go-fly.go -EXPOSE 8081 -CMD ["/app/go-fly","server"] \ No newline at end of file diff --git a/start.bat b/start.bat deleted file mode 100644 index 2271c68..0000000 --- a/start.bat +++ /dev/null @@ -1,2 +0,0 @@ -go-fly.exe server -pause \ No newline at end of file diff --git a/stop.bat b/stop.bat deleted file mode 100644 index f072133..0000000 --- a/stop.bat +++ /dev/null @@ -1 +0,0 @@ -taskkill -f -t -im go-fly.exe \ No newline at end of file diff --git a/stop.sh b/stop.sh deleted file mode 100644 index 789a676..0000000 --- a/stop.sh +++ /dev/null @@ -1,2 +0,0 @@ -ps -ef|grep "go-fly" -kill -9 $(pidof 'go-fly') \ No newline at end of file