mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 00:22:14 +01:00
43 lines
1010 B
Docker
43 lines
1010 B
Docker
ARG GOLANG_VERSION
|
||
|
||
# |--------------------------------------------------------------------------
|
||
# | Binary
|
||
# |--------------------------------------------------------------------------
|
||
# |
|
||
# | Buils Gotenberg binary.
|
||
# |
|
||
|
||
FROM golang:${GOLANG_VERSION}-stretch AS golang
|
||
|
||
ARG VERSION
|
||
|
||
ENV GOOS=linux \
|
||
GOARCH=amd64 \
|
||
CGO_ENABLED=0
|
||
|
||
# Define our workding outside of $GOPATH (we're using go modules).
|
||
WORKDIR /gotenberg
|
||
|
||
# Copy our source code.
|
||
COPY . .
|
||
|
||
# Build our binary.
|
||
RUN go build -o /gotenberg/gotenberg -ldflags "-X main.version=${VERSION}" cmd/gotenberg/main.go
|
||
|
||
# |--------------------------------------------------------------------------
|
||
# | Final touch
|
||
# |--------------------------------------------------------------------------
|
||
# |
|
||
# | Last instructions of this build.
|
||
# |
|
||
|
||
FROM thecodingmachine/gotenberg:base
|
||
|
||
LABEL authors="Julien Neuhart <j.neuhart@thecodingmachine.com>"
|
||
|
||
COPY --from=golang /gotenberg/gotenberg /usr/local/bin/
|
||
|
||
WORKDIR /gotenberg
|
||
|
||
EXPOSE 3000
|
||
CMD [ "gotenberg" ] |