Skip to content

Commit b58bc93

Browse files
committed
feat: add docker image
1 parent e7ed535 commit b58bc93

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3-alpine
2+
3+
WORKDIR /app
4+
5+
COPY . /app
6+
7+
RUN python3 setup.py install
8+
9+
ENTRYPOINT ["/usr/local/bin/seoanalyze"]

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ Installation
1616
pip3 install pyseoanalyzer
1717
```
1818

19+
### Docker
20+
21+
```
22+
docker run sethblack/python-seo-analyzer [ARGS ...]
23+
```
24+
1925
Command-line Usage
2026
------------------
2127

0 commit comments

Comments
 (0)