mirror of
https://github.com/willnorris/imageproxy.git
synced 2024-12-30 22:34:18 -05:00
docker: update to go1.12 and build imageproxy as a module
This commit is contained in:
parent
b7975bcbe8
commit
5a07762971
2 changed files with 13 additions and 10 deletions
|
@ -7,6 +7,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- updated docker image to use go1.12 compiler and build imageproxy as a go module.
|
||||||
|
|
||||||
## [0.8.0] (2019-03-21)
|
## [0.8.0] (2019-03-21)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
20
Dockerfile
20
Dockerfile
|
@ -1,27 +1,27 @@
|
||||||
FROM golang:1.9 as build
|
FROM golang:1.12 as build
|
||||||
MAINTAINER Will Norris <will@willnorris.com>
|
MAINTAINER Will Norris <will@willnorris.com>
|
||||||
|
|
||||||
RUN useradd -u 1001 go
|
RUN useradd -u 1001 go
|
||||||
|
|
||||||
WORKDIR /go/src/willnorris.com/go/imageproxy
|
WORKDIR /app
|
||||||
ADD . .
|
|
||||||
|
|
||||||
WORKDIR /go/src/willnorris.com/go/imageproxy/cmd/imageproxy
|
COPY go.mod go.sum ./
|
||||||
RUN go-wrapper download
|
RUN go mod download
|
||||||
RUN CGO_ENABLED=0 GOOS=linux go-wrapper install
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN CGO_ENABLED=0 GOOS=linux go build -v ./cmd/imageproxy
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
|
|
||||||
WORKDIR /go/bin
|
|
||||||
|
|
||||||
COPY --from=build /etc/passwd /etc/passwd
|
COPY --from=build /etc/passwd /etc/passwd
|
||||||
COPY --from=build /usr/share/zoneinfo /usr/share/zoneinfo
|
COPY --from=build /usr/share/zoneinfo /usr/share/zoneinfo
|
||||||
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||||||
COPY --from=build /go/bin/imageproxy .
|
COPY --from=build /app/imageproxy /app/imageproxy
|
||||||
|
|
||||||
USER go
|
USER go
|
||||||
|
|
||||||
CMD ["-addr", "0.0.0.0:8080"]
|
CMD ["-addr", "0.0.0.0:8080"]
|
||||||
ENTRYPOINT ["/go/bin/imageproxy"]
|
ENTRYPOINT ["/app/imageproxy"]
|
||||||
|
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
Loading…
Reference in a new issue