Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:wheezy

ENV DIST /go/src/github.com/k8sp/graphviz

RUN sed -i "s#wheezy#jessie#g" /etc/apt/sources.list
RUN apt-get update
RUN apt-get install -y graphviz
RUN apt-get install -y graphviz && dot -v

COPY . $DIST
RUN cd $DIST && go get ./... && go get .
Expand Down
8 changes: 8 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: "2"
services:
graphviz:
build: .
ports:
- "9090"
volumes:
- ./cache:/cache