All checks were successful
Build ostree packages from sid to trixie / build (push) Successful in 3m40s
26 lines
436 B
Docker
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"]
|