Dockerfile 268 B

12345678910111213141516171819
  1. FROM python:3-alpine
  2. MAINTAINER Andrew Kane <andrew@chartkick.com>
  3. ENV INSTALL_PATH /app
  4. RUN mkdir -p $INSTALL_PATH
  5. WORKDIR $INSTALL_PATH
  6. COPY . ./
  7. RUN pip install --no-cache-dir -r requirements.txt
  8. RUN python setup.py install
  9. RUN pip install awscli
  10. CMD s3tk