Files
2018-12-15 17:23:31 +03:00

13 lines
288 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
FROM ubuntu:17.10
MAINTAINER Ege Balcı <ege.balci@invictuseurope.com>
USER root
RUN apt-get update -y
RUN apt-get install -y git golang nasm fonts-powerline
RUN mkdir /root/go
ENV GOPATH /root/go
RUN go get -v github.com/egebalci/amber
ENTRYPOINT ["/root/go/bin/amber"]
CMD ["--help"]