Go Docker Alpine

Product: pdftron-go

Product Version: github.com/pdftron/pdftron-go/v2

Please give a brief summary of your issue: Build go project in Alpine linux

Please describe your issue and provide steps to reproduce it:
What is the instruction to build Apryse server SDK in Go project using alpine image?

Please provide a link to a minimal sample where the issue is reproducible:
This is my docker file

FROM golang:1.23-alpine

WORKDIR /app

COPY go.mod go.sum ./
RUN go mod download

COPY . .

RUN go build -o server .

EXPOSE 8080

CMD ["./server"]

I’m getting this error:

=> ERROR [6/6] RUN go build -o server .                                                                                                                                          0.6s
------                                                                                                                                                                                 
 > [6/6] RUN go build -o server .:                                                                                                                                                     
0.568 package pdf-annotates-location                                                                                                                                                   
0.568   imports pdf-annotates-location/pdf
0.568   imports github.com/pdftron/pdftron-go/v2: build constraints exclude all Go files in /go/pkg/mod/github.com/pdftron/pdftron-go/v2@v2.3.3
------
Dockerfile:10
--------------------
   8 |     COPY . .
   9 |     
  10 | >>> RUN go build -o server .
  11 |     
  12 |     EXPOSE 8080
--------------------
ERROR: failed to solve: process "/bin/sh -c go build -o server ." did not complete successfully: exit code: 1

imports github.com/pdftron/pdftron-go/v2: build constraints exclude all Go files in /go/pkg/mod/github.com/pdftron/pdftron-go/v2@v2.3.3

The “build constraints exclude …” can be several issues but I think the most common is that the system file permissions are not allowing the user to access the go pkg folder “/go/pkg/mod/github.com/pdftron/pdftron-go/v2@v2.3.3”. You can see the same result testing in a local Linux instance running the Apryse SDK GO examples by running:

go install github.com/pdftron/pdftron-go/v2@2.3.3

And running the included tests as a non root user. You will need to adjust the permissions for your specific user.

I’ve updated my Dockerfile

FROM golang:1.23.4-alpine

# Set the working directory inside the container
WORKDIR /app

RUN apk update && apk add --no-cache gcc libc-dev g++

# Copy the Go module files and install dependencies
COPY go.mod go.sum ./
RUN go mod download

# Copy the source code into the container
COPY . .

# Build the Go app
RUN CGO_ENABLED=1 go build -o apryse ./cmd/test/main.go

But I’ve got new error

/usr/lib/gcc/x86_64-alpine-linux-musl/14.2.0/…/…/…/…/x86_64-alpine-linux-musl/bin/ld: /go/pkg/mod/github.com/pdftron/pdftron-go/v2@v2.4.1/shared_libs/unix_x86_64/Lib/libPDFNetC.so: undefined reference to `longjmp@GLIBC_2.2.5’

It looks like this is the problem with glibc in Alpine Linux, According to this page Apryse SDK can run on Alpine Linux, can you please let me know what dependencies I need to install to be able to compile my code?

1 Like