Files
dpkg-buildpackage/Dockerfile
a1012112796 681ade8cc6
All checks were successful
continuous-integration/drone/push Build is passing
默认使用 bash
Signed-off-by: a1012112796 <1012112796@qq.com>
2022-12-20 16:25:48 +08:00

16 lines
342 B
Docker

FROM ubuntu:20.04
ENV DEBIAN_FRONTEND noniteractive
RUN apt-get -qq update && apt-get -qq -y --no-install-recommends install \
automake \
autoconf \
build-essential \
cmake \
git \
debhelper \
devscripts \
bash && \
apt-get autoclean && \
rm -rf /var/lib/apt/lists/* && \
ln -sf /bin/bash /bin/sh