diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7298b73 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.6-alpine +WORKDIR /project +COPY . /project +RUN pip install -r requirements.txt + +CMD ["python","dynamodb-copy-table.py"] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c87d1e4 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +boto==2.49.0 \ No newline at end of file