feat: all

This commit is contained in:
arielherself 2024-04-08 12:36:13 +08:00
commit 6867056bd5
Signed by: arielherself
SSH Key Fingerprint: SHA256:AK3cyo9tFsp7Mox7K0sYphleC8hReXhnRKxwuDT5LBc
2 changed files with 31 additions and 0 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM debian:12.5
MAINTAINER arielherself
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update
RUN apt install git build-essential software-properties-common autoconf automake libtool pkg-config ca-certificates libssl-dev locales locales-all libzstd-dev liblzma-dev libbz2-dev libz-dev libpq-dev -y
RUN apt clean
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
RUN git clone "https://github.com/boostorg/boost" /boost_inst --recursive
WORKDIR /boost_inst
RUN ./bootstrap.sh
RUN ./b2 install -q
WORKDIR /
RUN rm -rf /boost_inst

15
README.md Normal file
View File

@ -0,0 +1,15 @@
# build-boost
Integrate [Boost C++ Libraries](https://github.com/boostorg/boost) into a Debian docker.
## Build
```bash
docker build -t build-boost .
```
## Use
```bash
docker pull arielherself/build-boost:1.85.0
```