initial shape of the tool

This commit is contained in:
2023-07-08 20:23:29 -04:00
parent 4cebf8ccf4
commit 890b25f697
4 changed files with 393 additions and 0 deletions

9
Dockerfile Normal file
View 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"]