mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-26 10:15:39 -06:00
622813626d
The latest Docker builds produced by Travis-CI are broken. It seems the binary is missing from the image. Seeing if the slash prefix in the Dockerfile ADD statement is causing a problem.
14 lines
283 B
Docker
14 lines
283 B
Docker
# Copyright 2016 The OPA Authors. All rights reserved.
|
|
# Use of this source code is governed by an Apache2
|
|
# license that can be found in the LICENSE file.
|
|
|
|
FROM scratch
|
|
|
|
MAINTAINER Torin Sandall <torinsandall@gmail.com>
|
|
|
|
ADD opa_linux_GOARCH /opa
|
|
|
|
ENTRYPOINT ["/opa"]
|
|
|
|
CMD ["run"]
|