Skip to content

Instantly share code, notes, and snippets.

View biancode's full-sized avatar
🚀
building a company and trainee new open source developers

Klaus Landsdorf biancode

🚀
building a company and trainee new open source developers
View GitHub Profile
@biancode
biancode / Dockerfile
Created February 26, 2019 20:31 — forked from erossignon/Dockerfile
Docker file to run node-red-contrib-iiot-opcua tests in a container
# docker build . -t node-red-contrib-iiot-opcua
# docker run node-red-contrib-iiot-opcua
FROM mhart/alpine-node
RUN apk add git make python g++ openssl
RUN cd /home && git clone https://github.com/biancode/node-red-contrib-iiot-opcua.git
RUN cd /home/node-red-contrib-iiot-opcua && \
git reset HEAD --hard && \
git fetch && \
git checkout develop && \