6 lines
159 B
Docker
6 lines
159 B
Docker
FROM mcr.microsoft.com/devcontainers/base:ubuntu
|
|
|
|
RUN apt clean && apt update --fix-missing
|
|
RUN apt install -y pkg-config \
|
|
&& rm -rf /var/lib/apt/lists/*
|