commit be1ab4f554f1a3213d36771cbc0734f58f929839 Author: Wolfgang Hottgenroth Date: Thu Jul 29 09:58:11 2021 +0200 initial diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..9e5f3a9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,4 @@ +include: + - project: dockerized/commons + ref: master + file: gitlab-ci-template.yml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c49d888 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM node:14-buster + +LABEL Maintainer="Wolfgang Hottgenroth " +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 + + + +