This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# STEP 1 - Build the binary | |
# use the golang image as build image | |
FROM golang | |
# copy the local package files to the container's workspace. | |
ADD . /go/src/github.com/dj95/homekit-api | |
# set the working directory to build the application | |
WORKDIR /go/src/github.com/dj95/homekit-api |