s3-resource-simple/Dockerfile

13 lines
268 B
Docker
Raw Normal View History

2016-03-10 07:32:05 +01:00
FROM python:3.5-alpine
# https://github.com/yikaus/docker-alpine-bash/blob/34b9807/Dockerfile#L4
RUN apk add --update bash
RUN pip install --upgrade pip
RUN pip install --upgrade awscli
ADD assets/ /opt/resource/
# RUN chmod a+x
CMD echo Simple S3 Resource ready.