Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 887613d

Browse files
committed
correct some Dockerfile error
1 parent 964c7e6 commit 887613d

File tree

5 files changed

+5
-11
lines changed

5 files changed

+5
-11
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Python docker images on alpine linux.
44

5-
Inspireded from [@amancevice](https://hub.docker.com/amancevice/pandas) and [@jfloff](https://hub.docker.com/r/jfloff/alpine-python/)
5+
Inspireded from [@amancevice](https://hub.docker.com/amancevice/pandas), [@jfloff](https://hub.docker.com/r/jfloff/alpine-python/) and [gliderlabs](http://gliderlabs.viewdocs.io/docker-alpine/usage/)
66

77
## Images list
88

‎pandas/0.18/2/Dockerfile‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ FROM phirov/python:2
44
MAINTAINER phirov@163.com
55

66
RUN apk add --no-cache --virtual .build-deps g++ && \
7-
pip install numpy==1.11.2 cython==0.25.1 && \
8-
pip install pandas==0.18.1 && \
7+
pip install numpy==1.11.2 pandas==0.18.1 && \
98
apk del .build-deps

‎pandas/0.19/2/Dockerfile‎

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
FROM phirov/python:2
44
MAINTAINER phirov@163.com
55

6-
RUN apk add --no-cache --virtual .build-deps g++ && \
7-
pip install numpy==1.11.2 cython==0.25.1 && \
8-
pip install pandas==0.19.1 && \
9-
apk del .build-deps
6+
RUN apk add --no-cache --virtual build-deps g++ && \
7+
pip install numpy==1.11.2 pandas==0.19.1 && \
8+
apk del build-deps

‎python/2/Dockerfile‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@ FROM alpine:3.4
44
MAINTAINER phirov@163.com
55

66
RUN apk add --no-cache python-dev py-pip && \
7-
apk add --no-cache --virtual .build-deps g++ && \
8-
apk del .build-deps && \
97
ln -s /usr/include/locale.h /usr/include/xlocale.h && \
108
pip install --upgrade pip

‎python/3/Dockerfile‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@ FROM alpine:3.4
44
MAINTAINER phirov@163.com
55

66
RUN apk add --no-cache python3-dev && \
7-
apk add --no-cache --virtual .build-deps g++ && \
8-
apk del .build-deps && \
97
ln -s /usr/include/locale.h /usr/include/xlocale.h && \
108
pip3 install --upgrade pip

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /