OpenMTC/docker/sdk-arm
2018-06-20 17:02:10 +02:00

25 lines
789 B
Plaintext

############################################################
# Dockerfile for openmtc sdk binary environment
############################################################
# Set the base image to use openmtc/base
FROM openmtc/base-arm:latest
ENV MOD_NAME=sdk
# Set the file maintainer
MAINTAINER rst/tgu
# update pip to latest version
RUN pip install --upgrade pip setuptools
# install openmtc dependencies
COPY tmp/$MOD_NAME-dependencies.txt /tmp/requirements.txt
RUN pip install --upgrade --requirement /tmp/requirements.txt
# install openmtc-sdk
COPY tmp/openmtc-$MOD_NAME.tar.gz /tmp/openmtc-$MOD_NAME.tar.gz
RUN tar xzf /tmp/openmtc-$MOD_NAME.tar.gz -C / \
--owner root --group root --no-same-owner --no-overwrite-dir \
--transform 's/json\.dist/json/' --show-transformed