- 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.
11 lines
297 B
Docker
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}
|