mirror of
https://github.com/evilsocket/arc.git
synced 2024-05-26 22:37:37 +03:00
7 lines
199 B
Docker
7 lines
199 B
Docker
FROM golang
|
|
ADD . /go/src/github.com/evilsocket/arc
|
|
WORKDIR /go/src/github.com/evilsocket/arc
|
|
COPY sample_config.toml config.toml
|
|
RUN make build
|
|
EXPOSE 8443
|
|
ENTRYPOINT ./build/arc -config config.toml |