Skip to content

Instantly share code, notes, and snippets.

View dj95's full-sized avatar

Daniel Jankowski dj95

View GitHub Profile
@dj95
dj95 / Dockerfile
Created October 1, 2018 17:44
homekit-api dockerfile
# 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