mirror of
https://github.com/boostorg/docker.git
synced 2026-01-19 16:22:10 +00:00
14 lines
198 B
Docker
14 lines
198 B
Docker
FROM alpine:3.9 as boost_regression
|
|
|
|
RUN apk add --no-cache\
|
|
linux-headers \
|
|
python2 \
|
|
git \
|
|
rsync \
|
|
openssh \
|
|
g++ \
|
|
zlib-dev
|
|
|
|
WORKDIR /root
|
|
|