fleet/Dockerfile
Jason Meller 5ad7c07e0c Dockerize app (#32)
This commit adds both a Dockerfile and updates the docker-compose.yml with local mounting so that you can standup a consistent dev environment. Please view the project README for more information.
2016-08-04 11:41:18 -04:00

12 lines
254 B
Docker

FROM golang:1.6.3-wheezy
MAINTAINER engineering@kolide.co
RUN mkdir -p /app
WORKDIR /app
COPY . /app
# Download and install any required third party dependencies into the container.
RUN go-wrapper download
RUN go build -o kolide
CMD /app/kolide serve