Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
phstudy committed Oct 18, 2021
1 parent 18b5b23 commit 0561ee7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 0561ee7

Please sign in to comment.