mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
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.
12 lines
254 B
Docker
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
|