Closed frankgreco closed 1 year ago
Thanks for posting this, is the first time I use v8go and I didn't know why doesn't works. Its happen the same to me running with the v0.8.0 version but failing v0.9.0
cc @rogchap
@frankgreco thanks to your comment about the gcc version, I manged to solve it
FROM golang:bookworm AS opencv-base-local
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
build-essential gcc # ...
@Davincible ๐๐ผ Thanks!! This did it!
It looks like the version of GCC that ships with the official Golang Dcoker containers is too old to work with v0.9.0. I'm getting errors from a Dockerfile that worked with
v0.8.0
like this.Here is my Dockerfile ๐๐ผ