Files
go-winrt/Dockerfile.build
2025-08-22 17:42:23 -04:00

11 lines
302 B
Docker

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}