17 lines
299 B
Docker
17 lines
299 B
Docker
FROM node:14-buster
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.hottis.de/hv2/hv2-node-build-env"
|
|
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y python3-pip && \
|
|
rm /usr/bin/python && \
|
|
ln -s /usr/bin/python3 /usr/bin/python && \
|
|
pip3 install Cheetah3
|
|
|
|
|
|
|
|
|