Skip to content

Commit

Permalink
jfrazelle -> jessfraz
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <acidburn@google.com>
  • Loading branch information
jessfraz committed Sep 30, 2016
1 parent 9e68e5c commit b7822c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -7,7 +7,7 @@ ENV GOPATH /go
RUN apk add --no-cache \
ca-certificates

COPY . /go/src/github.com/jfrazelle/bane
COPY . /go/src/github.com/jessfraz/bane

RUN set -x \
&& apk add --no-cache --virtual .build-deps \
Expand All @@ -16,7 +16,7 @@ RUN set -x \
gcc \
libc-dev \
libgcc \
&& cd /go/src/github.com/jfrazelle/bane \
&& cd /go/src/github.com/jessfraz/bane \
&& go build -o /usr/bin/bane . \
&& apk del .build-deps \
&& rm -rf /go \
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# bane

[![Travis CI](https://travis-ci.org/jfrazelle/bane.svg?branch=master)](https://travis-ci.org/jfrazelle/bane)
[![Travis CI](https://travis-ci.org/jessfraz/bane.svg?branch=master)](https://travis-ci.org/jessfraz/bane)

AppArmor profile generator for docker containers. Basically a better AppArmor
profile, than creating one by hand, because who would ever do that.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/BurntSushi/toml"
"github.com/Sirupsen/logrus"
"github.com/jfrazelle/bane/apparmor"
"github.com/jessfraz/bane/apparmor"
)

const (
Expand Down

0 comments on commit b7822c8

Please sign in to comment.