mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 14:31:40 -04:00
6 lines
152 B
Docker
6 lines
152 B
Docker
FROM google/golang:stable
|
|
MAINTAINER Guillaume J. Charmes <[email protected]>
|
|
CMD /tmp/a.out
|
|
ADD . /src
|
|
RUN cd /src && go build -o /tmp/a.out
|