Begin cleanup
This commit is contained in:
parent
27d15a5ddf
commit
9247b627fd
3 changed files with 8 additions and 7 deletions
|
@ -1,9 +1,7 @@
|
||||||
FROM python:3.10.0-alpine3.15
|
FROM python:3.10.0-alpine3.15
|
||||||
|
|
||||||
RUN apk add --update --no-cache\
|
RUN apk add --update --no-cache\
|
||||||
build-base jpeg-dev zlib-dev libjpeg\
|
build-base \
|
||||||
gettext\
|
|
||||||
py3-lxml\
|
|
||||||
openldap-dev\
|
openldap-dev\
|
||||||
python3-dev\
|
python3-dev\
|
||||||
&& rm -rf /var/cache/apk/*
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
|
@ -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,
|
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
|
## Development Setup
|
||||||
|
|
||||||
|
```
|
||||||
|
python3 -m venv venv
|
||||||
|
. ./venv/bin/activate
|
||||||
|
pip install -r requirements.txt
|
||||||
|
``
|
||||||
|
|
||||||
* Clone this repository and enter top-level directory.
|
* Clone this repository and enter top-level directory.
|
||||||
* (Optional) Setup a Python virtualenv and install dependencies via pip:
|
* (Optional) Setup a Python virtualenv and install dependencies via pip:
|
||||||
- `virtualenv .venv`
|
- `virtualenv .venv`
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
django==2.2.16
|
django==3.2.9
|
||||||
django-auth-ldap
|
django-auth-ldap
|
||||||
python-ldap
|
python-ldap
|
||||||
django-bootstrap3
|
django-bootstrap3
|
||||||
|
|
Loading…
Reference in a new issue