2018-10-12 02:44:02 +02:00
|
|
|
# vim: ft=dockerfile
|
|
|
|
|
|
|
|
# Not using python:3.7 here because team-gcc-arm-embedded/ppa does not support
|
|
|
|
# Ubuntu Cosmic or Debian Stretch, and Alpine, bizarrely, does not seem to
|
|
|
|
# package GCC cross compilers
|
2019-07-21 00:01:17 +02:00
|
|
|
FROM python:3.7-alpine
|
2018-10-12 02:44:02 +02:00
|
|
|
|
2019-07-21 00:03:45 +02:00
|
|
|
RUN apk update && apk add alpine-sdk curl wget openssh rsync git git-lfs
|
2019-07-21 00:01:17 +02:00
|
|
|
RUN pip install pipenv
|