12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # sync with https://github.com/fphammerle/wireless-sensor-mqtt/blob/master/Dockerfile
- ARG BASE_IMAGE=python:3.8-alpine3.13
- ARG SOURCE_DIR_PATH=/intertechno-cc1101-mqtt
- # hadolint ignore=DL3006
- FROM $BASE_IMAGE as build
- RUN apk add --no-cache \
- gcc `# spidev build` \
- git `# setuptools_scm` \
- jq `# edit Pipfile.lock` \
- linux-headers `# spidev build linux/spi/spidev.h` \
- musl-dev `# spidev build` \
- && adduser -S build
- USER build
- RUN pip install --user --no-cache-dir pipenv==2020.6.2
- ARG SOURCE_DIR_PATH
- COPY --chown=build:nobody Pipfile Pipfile.lock $SOURCE_DIR_PATH/
- WORKDIR $SOURCE_DIR_PATH
- ENV PIPENV_CACHE_DIR=/tmp/pipenv-cache \
- PIPENV_VENV_IN_PROJECT=yes-please \
- PATH=/home/build/.local/bin:$PATH
- # `sponge` is not pre-installed
- RUN jq 'del(.default."intertechno-cc1101-mqtt")' Pipfile.lock > Pipfile.lock~ \
- && mv Pipfile.lock~ Pipfile.lock \
- && pipenv install --deploy --verbose
- COPY --chown=build:nobody . $SOURCE_DIR_PATH
- RUN pipenv install --deploy --verbose \
- && pipenv graph \
- && pipenv run pip freeze \
- && rm -r .git/ $PIPENV_CACHE_DIR \
- && chmod -cR a+rX .
- # workaround for broken multi-stage copy
- # > failed to copy files: failed to copy directory: Error processing tar file(exit status 1): Container ID ... cannot be mapped to a host ID
- USER 0
- RUN chown -R 0:0 $SOURCE_DIR_PATH
- USER build
- # hadolint ignore=DL3006
- FROM $BASE_IMAGE
- RUN apk add --no-cache \
- ca-certificates \
- tini \
- && find / -xdev -type f -perm /u+s -exec chmod -c u-s {} \; \
- && find / -xdev -type f -perm /g+s -exec chmod -c g-s {} \;
- USER nobody
- ARG SOURCE_DIR_PATH
- COPY --from=build $SOURCE_DIR_PATH $SOURCE_DIR_PATH
- ARG VIRTUALENV_PATH=$SOURCE_DIR_PATH/.venv
- ENV PATH=$VIRTUALENV_PATH/bin:$PATH
- ENTRYPOINT ["tini", "--"]
- CMD ["intertechno-cc1101-mqtt", "--help"]
|