Skip to content

Commit 18d3a94

Browse files
author
evren
committed
build changes for 1.1.1
1 parent 0306636 commit 18d3a94

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG GOLANG="1.11.5"
22
FROM golang:${GOLANG} as builder
33

4-
ARG IMAGINARY_VERSION="dev"
4+
ARG IMAGINARY_VERSION="1.1.1"
55
ARG LIBVIPS_VERSION="8.7.4"
66
ARG GOLANG
77

@@ -38,7 +38,7 @@ WORKDIR /tmp
3838
RUN curl -fsSL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "${GOPATH}/bin" v1.16.0
3939

4040

41-
WORKDIR ${GOPATH}/src/github.com/photoslurporg/imaginary
41+
WORKDIR ${GOPATH}/src/github.com/h2non/imaginary
4242

4343
# Copy imaginary sources
4444
COPY . .
@@ -54,7 +54,7 @@ RUN GO111MODULE=off golangci-lint run ./...
5454
RUN GO111MODULE=off go build -a \
5555
-o ${GOPATH}/bin/imaginary \
5656
-ldflags="-s -w -h -X main.Version=${IMAGINARY_VERSION}" \
57-
github.com/photoslurporg/imaginary
57+
github.com/h2non/imaginary
5858

5959
FROM debian:stretch-slim
6060

@@ -63,8 +63,8 @@ ARG IMAGINARY_VERSION
6363
LABEL maintainer="[email protected]" \
6464
org.label-schema.description="Fast, simple, scalable HTTP microservice for high-level image processing with first-class Docker support" \
6565
org.label-schema.schema-version="1.0" \
66-
org.label-schema.url="https://github.com/photoslurporg/imaginary" \
67-
org.label-schema.vcs-url="https://github.com/photoslurporg/imaginary" \
66+
org.label-schema.url="https://github.com/h2non/imaginary" \
67+
org.label-schema.vcs-url="https://github.com/h2non/imaginary" \
6868
org.label-schema.version="${IMAGINARY_VERSION}"
6969

7070
COPY --from=builder /usr/local/lib /usr/local/lib

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
// Version stores the current package semantic version
4-
var Version = "dev"
4+
var Version = "1.1.1"
55

66
// Versions represents the used versions for several significant dependencies
77
type Versions struct {

0 commit comments

Comments
 (0)