Compare commits

..

No commits in common. "528b3448e409cfe67ee15c700932ffae819e02d4" and "4dd77b4bcc3b8c1d228c8fd23530f76a82e38e2f" have entirely different histories.

2 changed files with 7 additions and 8 deletions

View File

@ -1,9 +1,9 @@
FROM alpine:latest
RUN apk add --no-cache python3 py3-pip py3-wheel git py3-lxml py3-gevent
RUN apk add --no-cache python3 py3-lxml py3-pip py3-wheel git
ADD . /app
RUN pip3 install --no-cache-dir /app[full] gunicorn
RUN pip3 install --no-cache-dir /app[full] gunicorn gevent
USER 1000:1000

View File

@ -57,7 +57,7 @@ pip install git+https://git.pictuga.com/pictuga/morss.git
Full installation (including optional dependencies)
```shell
pip install git+https://git.pictuga.com/pictuga/morss.git#egg=morss[full]
pip install git+https://git.pictuga.com/pictuga/morss.git#[full]
```
The full install includes mysql, redis and diskcache (possible cache backends).
@ -105,10 +105,9 @@ Providers supporting `cloud-init` (AWS, Oracle Cloud Infrastructure), based on U
#cloud-config
packages:
- python3-pip
- python3-wheels
- python3-lxml
- python3-gevent
- python-pip
- python-lxml
- python-wheels
- git
- ca-certificates
@ -121,7 +120,7 @@ write_files:
runcmd:
- update-ca-certificates
- pip install git+https://git.pictuga.com/pictuga/morss.git#egg=morss[full] gunicorn gevent
- pip install git+https://git.pictuga.com/pictuga/morss.git#[full] gunicorn gevent
- gunicorn --bind 0.0.0.0:${PORT:-8000} --workers 4 --worker-class=gevent --preload --access-logfile - morss
```