Begin cleanup

This commit is contained in:
Nico Schottelius 2021-12-05 18:19:07 +01:00
parent 27d15a5ddf
commit 9247b627fd
3 changed files with 8 additions and 7 deletions

View File

@ -1,9 +1,7 @@
FROM python:3.10.0-alpine3.15
RUN apk add --update --no-cache\
build-base jpeg-dev zlib-dev libjpeg\
gettext\
py3-lxml\
build-base \
openldap-dev\
python3-dev\
&& rm -rf /var/cache/apk/*

View File

@ -4,11 +4,14 @@ This service runs on [account.ungleich.ch](https://account.ungleich.ch/) and
allows customers manage their ungleich account (register, edit mail & password,
...).
Makes use of Django 2.2 LTS (not compatible with 3.0 at the moment) which is
supported until early 2022.
## Development Setup
```
python3 -m venv venv
. ./venv/bin/activate
pip install -r requirements.txt
``
* Clone this repository and enter top-level directory.
* (Optional) Setup a Python virtualenv and install dependencies via pip:
- `virtualenv .venv`

View File

@ -1,4 +1,4 @@
django==2.2.16
django==3.2.9
django-auth-ldap
python-ldap
django-bootstrap3