Проблема со сборкой go proyect в докере (сборка в Alpine и выполнение в Oracle Linux)
У меня проблема с созданием проекта go proyect, я создаю с помощью golang: alpine и копирую результат в oraclelinux:7-slim проблема в том, что когда я выполняю образ докера, результатом является ошибка
"standard_init_linux.go:211: exec user process caused "no such file or directory"".
Я попробовал построить с другим базовым образом, например "FROM golang:1.14 as builder", и выполнить его в oraclelinux:7-slim, и результат удовлетворительный.
Мне нужно выполнить в oraclelinux:7-slim, потому что для подключения к базе данных необходимо использовать Oracle Instant client.
Я хотел бы использовать Alpine, потому что golang:1.14 очень тяжелый.
Прикрепил dockerfile
# Start from golang base image
FROM golang:alpine as builder
RUN apk update && apk add --no-cache git && \
apk add build-base
# Set the current working directory inside the container
WORKDIR /app
# Copy go mod and sum files
COPY go.mod go.sum ./
# Download all dependencies. Dependencies will be cached if the go.mod and the go.sum files are not changed
RUN go mod download
# Copy the source from the current directory to the working Directory inside the container
COPY . .
# Build the Go app
RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -o main .
# Start a new stage from scratch
FROM oraclelinux:7-slim
ARG release=19
ARG update=6
# Install instant client
RUN yum -y update && \
yum -y install oracle-release-el7 && yum-config-manager --enable ol7_oracle_instantclient && \
yum -y install oracle-instantclient${release}.${update}-basiclite && \
rm -rf /var/cache/yum
ENV LANG=C.UTF-8
# Copy the Pre-built binary file from the previous stage
WORKDIR /root/
COPY --from=builder /app/main .
COPY --from=builder /app/.env .
# Expose port 8080 to the outside world
EXPOSE 8080
#Command to run the executable
ENTRYPOINT ["./main"]