first commit

This commit is contained in:
2025-08-22 17:42:23 -04:00
commit a6c09a5890
120 changed files with 11443 additions and 0 deletions

10
Dockerfile.build Normal file
View File

@ -0,0 +1,10 @@
FROM saltosystems/go-builder:2471083
ENV PKGPATH github.com/saltosystems/winrt-go
# include workspace .gitconfig in global .gitconfig
RUN git config --global include.path "${GOPATH}/src/${PKGPATH}/.gitconfig"
# copy current workspace
COPY . ${GOPATH}/src/${PKGPATH}
WORKDIR ${GOPATH}/src/${PKGPATH}