Skip to content

Instantly share code, notes, and snippets.

View fabiante's full-sized avatar

fabiante fabiante

View GitHub Profile
@fabiante
fabiante / Dockerfile
Last active July 30, 2025 12:54
Poppler Build Dockerfile
# Credits: https://stackoverflow.com/a/74313286/3647782
FROM ubuntu:22.10 as ubuntu-base
RUN apt update && apt upgrade -y
FROM ubuntu-base as build
RUN apt install -y \
wget \