blob: fc5b51d658e9382bf7929e1c0ccb67d1f25d03e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
FROM alpine:latest
# to run:
# docker run --rm -it -v $PWD:/host alpine sh
# docker run --rm -it -v $PWD:/host -w /host -v /tmp/bash_history:/root/.bash_history yts-importing bash
#
RUN apk add build-base \
&& apk add \
bash \
curl \
fortune \
git \
jq \
perl \
perl-app-cpanminus \
tig \
vim \
wget \
python \
cmake \
ninja \
&& true
RUN cpanm -n \
boolean \
Capture::Tiny \
XXX \
YAML::PP \
&& true
ENV PYTHONPATH=/python/lib/python3.7/site-packages
|