Skip to main content
Answer

Docker Image for linux/arm64 platform

  • July 31, 2025
  • 4 replies
  • 29 views

Forum|alt.badge.img

“I’m using cognite/opcua-extractor-net as container.
Is there a docker image version for linux/arm64 platform available ? (not present on docker hub)”

Best answer by Einar Omang

We currently do not build docker images for arm64 for the OPC-UA extractor.

4 replies

  • Practitioner
  • Answer
  • July 31, 2025

We currently do not build docker images for arm64 for the OPC-UA extractor.


Forum|alt.badge.img

Thanks for the quick response, Einar.


  • Practitioner
  • July 31, 2025

To elaborate a little bit, arm64 is still not something we often see in production, so we don’t target it a lot. When we do run into it, it is almost always a modern macbook, so we may have to do something in the future.

 

The OPC-UA extractor is actually open source, so you could build it yourself, here https://github.com/cognitedata/opcua-extractor-net:

image=$(docker build --build-arg version='1.0.0-localdev' --build-arg description='local dev build' -f Dockerfile.build -q .)
id=$(docker create $image)
docker cp $id:/build/deploy .
docker rm -v $id
docker build -t "cognite-opcua-extractor-local-dev" .

 


Forum|alt.badge.img

Thanks again Einar for the suggestion.