Skip to content

Commit

Permalink
package-install
Browse files Browse the repository at this point in the history
  • Loading branch information
avpnusr committed Apr 14, 2021
1 parent 0bc8353 commit 879f136
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ RUN apk upgrade --no-cache \
uwsgi \
uwsgi-python3 \
brotli \
py3-lxml \
&& pip3 install --upgrade pip \
&& pip3 install --no-cache -r requirements.txt \
&& apk del build-dependencies \
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ flask-babel==2.0.0
flask==1.1.2
idna==2.10
jinja2==2.11.3
lxml==4.6.3
## installing via package
#lxml==4.6.3
pygments==2.8.0
python-dateutil==2.8.1
pyyaml==5.4.1
Expand Down
2 changes: 1 addition & 1 deletion searx/webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ def preferences():

# save preferences
if request.method == 'POST':
resp = make_response(url_for('index', _external=True))
resp = make_response(url_for('index', _external=True))
try:
request.preferences.parse_form(request.form)
except ValidationException:
Expand Down

0 comments on commit 879f136

Please sign in to comment.