
* updates to alpine:3.10 from alpine:3.6 * updates from python2 to python3 * ensures that pip doesn't create a cache directory
11 lines
236 B
Docker
11 lines
236 B
Docker
FROM alpine:3.10
|
|
label maintainer="Elementar Sistemas <contato@elementarsistemas.com.br>"
|
|
|
|
RUN apk --no-cache add bash py3-pip && pip3 install --no-cache-dir awscli
|
|
ADD watch /watch
|
|
|
|
VOLUME /data
|
|
|
|
ENTRYPOINT [ "./watch" ]
|
|
CMD ["/data"]
|