mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
* Reorganized infrastructure, updated for frontend's loadtesting * Add changes suggested by @chiiph * Moved files per suggestion by Ben * Update docs with new links * Add config for multi account assume role
4 lines
245 B
Docker
4 lines
245 B
Docker
FROM golang:1.18.0
|
|
ARG TAG
|
|
RUN apt update && apt upgrade -y && apt install npm yarnpkg -y && ln -s /usr/bin/yarnpkg /usr/bin/yarn
|
|
RUN git clone -b $TAG https://github.com/fleetdm/fleet.git && cd fleet && make deps && make generate && make build
|