From be1ab4f554f1a3213d36771cbc0734f58f929839 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Thu, 29 Jul 2021 09:58:11 +0200 Subject: [PATCH] initial --- .gitlab-ci.yml | 4 ++++ Dockerfile | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 Dockerfile 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 + + + +