Skip to content
Snippets Groups Projects
Select Git revision
  • 556ae0d68fe522a2b0845ef396ab1aa107614bf7
  • master default
2 results

Dockerfile

Blame
  • Dockerfile 168 B
    FROM python:3.7-alpine3.9
    COPY requirements.txt /
    RUN pip install --progress-bar=off --no-cache-dir -r requirements.txt
    ENTRYPOINT [ "/usr/local/bin/check_s3_bucket" ]