initial shape of the tool
This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM golang:1.20
|
||||
WORKDIR /src
|
||||
COPY . ./
|
||||
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v .
|
||||
|
||||
FROM scratch
|
||||
COPY --from=0 /src/ts-docker-proxy ./
|
||||
ENV HOME=/
|
||||
CMD ["/ts-docker-proxy"]
|
Reference in New Issue
Block a user