blob: 5a9eb2b47163ea8dab97ccee5c2bccbfd3a147e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# This Dockerfile installs a compiled binary into a bare system.
# You must either commit your compiled binary into source control (not recommended)
# or build the binary first as part of a CI/CD pipeline.
FROM alpine:3.5
# We'll likely need to add SSL root certificates
RUN apk --no-cache add ca-certificates
WORKDIR /usr/local/bin
# Change `app` to whatever your binary is called
Add app .
CMD ["./app"]
|