Stop using alpine base images

- It is currently breaking the build, since alpine does not
  support binary wheels & we introduced ruamel.yaml which has
  binary dependencies
- pip / python on alpine is broken wrt symlinks, making local
  testing harder
pull/183/head
yuvipanda 2018-01-03 13:13:00 -08:00
rodzic 839de1ee1b
commit 379c52bac3
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
FROM python:3.6.3-alpine3.6
FROM python:3.6.3
# Git is required for repo2docker to work
RUN apk add --no-cache git
#RUN apk add --no-cache git
RUN mkdir /tmp/src
ADD . /tmp/src