diff --git a/Dockerfile-dev b/.dev/Dockerfile similarity index 65% rename from Dockerfile-dev rename to .dev/Dockerfile index 652981b5..47f4f045 100644 --- a/Dockerfile-dev +++ b/.dev/Dockerfile @@ -4,17 +4,18 @@ MAINTAINER "Hunter Long (https://github.com/hunterlong)" RUN apk add --no-cache libstdc++ gcc g++ make git ca-certificates linux-headers wget curl -RUN curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o $GOPATH/bin/dep && \ - chmod +x $GOPATH/bin/dep && \ - curl -L -s https://assets.statup.io/sass -o /usr/local/bin/sass && \ +RUN curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o /go/bin/dep && \ + chmod +x /go/bin/dep + +RUN curl -L -s https://assets.statup.io/sass -o /usr/local/bin/sass && \ chmod +x /usr/local/bin/sass +WORKDIR /go/src/github.com/hunterlong/statup +ADD . /go/src/github.com/hunterlong/statup + ENV VERSION=$(VERSION) ENV IS_DOCKER=true -WORKDIR $GOPATH/src/github.com/hunterlong/statup -COPY . . - RUN make dev-deps && make install EXPOSE 8080 ENTRYPOINT make run \ No newline at end of file diff --git a/CNAME b/CNAME deleted file mode 100644 index 2ce18f83..00000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -statup.io \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index a408fcc2..ede80775 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:latest -LABEL maintainer "Hunter Long (https://github.com/hunterlong)" +MAINTAINER "Hunter Long (https://github.com/hunterlong)" # Locked version of Statup for 'latest' Docker tag ENV VERSION=v0.45 diff --git a/plugins.json b/plugins.json deleted file mode 100644 index c690569d..00000000 --- a/plugins.json +++ /dev/null @@ -1,7 +0,0 @@ -[{ - "name": "Example Plugin", - "description": "An example of a plugin for Statup", - "repo": "https://github.com/hunterlong/statup_plugin", - "author": "Hunter Long", - "namespace": "example" -}] \ No newline at end of file