ostree/Dockerfile
robojerk a79a4f5797
All checks were successful
Build ostree packages from sid to trixie / build (push) Successful in 3m40s
first commit
2025-09-06 08:39:28 -07:00

26 lines
436 B
Docker

FROM debian:unstable-slim
# Set environment variables
ENV DEBIAN_FRONTEND=noninteractive
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
# Install basic build tools
RUN apt update && \
apt install -y \
build-essential \
devscripts \
debhelper \
pkg-config \
git \
curl \
wget \
&& \
apt clean && \
rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /workspace
# Default command
CMD ["bash"]