Files
releases/Dockerfile.in
T
Torin Sandall 622813626d Attempt to fix Docker build
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.
2016-11-10 12:21:37 -08:00

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"]