mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
5 lines
152 B
Docker
5 lines
152 B
Docker
FROM google/golang:stable
|
|
MAINTAINER Guillaume J. Charmes <guillaume@charmes.net>
|
|
CMD /tmp/a.out
|
|
ADD . /src
|
|
RUN cd /src && go build -o /tmp/a.out
|