diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..137e3ed --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.8-slim +RUN useradd --create-home --shell /bin/bash app_user +WORKDIR /dsa +RUN pip install dsa-downloader +USER app_user +CMD ["dsa-downloader"] \ No newline at end of file diff --git a/README.md b/README.md index ec2502c..8159d2f 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,10 @@ Downloading assets $ dsa-downloader download-assets ``` +## Docker + +Extracting bootstrap config from apk + +``` +docker run -it --rm -v "$PWD":/dsa study/dsa-downloader dsa-downloader extract-config com.glu.disneygame.apk +``` \ No newline at end of file