Files
go-winrt/Dockerfile.build
Alex Savin 0a314257f8 Refactor import paths to use the new repository location for go-winrt
- Updated import paths in multiple files to point to the new repository at git.savin.nyc/alex/go-winrt.
- Removed old import paths referencing saltosystems/winrt-go.
- Ensured consistency across all affected files in the Bluetooth Generic Attribute Profile and Foundation packages.
2025-08-22 17:52:08 -04:00

11 lines
297 B
Docker

FROM saltosystems/go-builder:2471083
ENV PKGPATH git.savin.nyc/alex/go-winrt
# 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}