You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use this library to encode the video and I can't find a way to make it work, everytime I try to build the app I am always getting the following error:
ARG UBUNTU_IMAGE_VERSION=24.04
ARG YT_DLP=2024.08.06
FROM golang:1.21.3 AS base
ENV CGO_ENABLED=0
ENV GOPRIVATE=github.com/ppaulogustavo
RUN go install github.com/jstemmer/go-junit-report@latest
RUN go install github.com/go-delve/delve/cmd/dlv@latest
WORKDIR /tmp/gobuild
COPY ./go.mod ./go.sum ./
RUN go mod download -x
COPY . .
FROM base as builder-debug
ARG BUILD_VERSION='dev-debug'
RUN apt-get update && apt-get install -y pkg-config libopus-dev libopusfile-dev moreutils
RUN --mount=type=cache,target=/root/.cache/go-build \
go build -gcflags="all=-N -l" -ldflags "-X main.BuildVersion=${BUILD_VERSION}" -o /tmp/gobuild/bin/jbl
This is triggering the error when the build command is executed
The text was updated successfully, but these errors were encountered:
Hi, weird, it looks like the stream.go file isn't available in that directory. Is the directory mounted from somewhere else, without that file? Try an ls and see if it exists before building.
Hey!!
I am trying to use this library to encode the video and I can't find a way to make it work, everytime I try to build the app I am always getting the following error:
Do you mind to help me?
This is a piece of my docker file
This is triggering the error when the build command is executed
The text was updated successfully, but these errors were encountered: