Skip to content

Commit

Permalink
using alpine instead of ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
lindt committed Mar 22, 2016
1 parent 2fae343 commit 7b89805
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
FROM python
FROM alpine:3.3
MAINTAINER [email protected]

RUN \
apk add --no-cache python3 && \
apk add --no-cache --virtual=build-dependencies wget ca-certificates && \
wget "https://bootstrap.pypa.io/get-pip.py" -O /dev/stdout | python3 && \
apk del build-dependencies

RUN pip install --no-cache-dir pyaml

COPY bin /bin
Expand Down

0 comments on commit 7b89805

Please sign in to comment.