Skip to content

Instantly share code, notes, and snippets.

View mapo80's full-sized avatar

Matteo Polito mapo80

  • 14:28 (UTC +01:00)
View GitHub Profile
@mapo80
mapo80 / Dockerfile
Created July 7, 2025 07:06
Dockerfile to build LibreOffice with .net bindings
###############################################################################
# LibreOffice master + .NET bindings – tail autogen.log on error (bash shell)
###############################################################################
#############################
# STAGE 1 ▸ builder
#############################
FROM ubuntu:22.04 AS builder
SHELL ["/bin/bash", "-c"] # <── usa bash per tutti i RUN seguenti
@mapo80
mapo80 / Dockefile
Created March 3, 2023 16:28
Docker file to compile opencvsharp do Debian
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as builder
ENV DEBIAN_FRONTEND=noninteractive
ENV OPENCV_VERSION=4.7.0
WORKDIR /
# Install opencv dependencies
RUN apt-get update && apt-get -y install --no-install-recommends \
apt-transport-https \