- Replace generic Dockerfile with platform-specific Dockerfile.linux-x86_64 - Simplify .dockerignore to essential patterns - Update build script with improved container build process and output handling - Enhance README with detailed build process documentation
14 lines
352 B
Docker
14 lines
352 B
Docker
FROM ubuntu:20.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive TZ=UTC
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential libtool autotools-dev automake autoconf pkg-config \
|
|
bsdmainutils python3 curl ca-certificates git unzip zip file rsync \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . /src
|
|
|
|
CMD ["/bin/bash"] |