feat: echo(get,set file)

This commit is contained in:
loveuer
2024-04-05 12:47:51 +08:00
parent 4ae56d1726
commit c8ea9ec9f4
3 changed files with 55 additions and 8 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.20.14-alpine3.19 AS builder
FROM golang:latest AS builder
WORKDIR /app/build
@ -7,6 +7,8 @@ COPY go.sum .
COPY service/echo/main.go .
ENV GOPROXY https://goproxy.io
ENV GOOS linux
ENV GOARCH amd64
RUN go mod download && go build -ldflags='-s -w' -o echo_app .