Skip to content

Commit 2c8f84a

Browse files
committed
fix(translation): Install dependencies from appstore
Signed-off-by: Joas Schilling <[email protected]>
1 parent d74e7f6 commit 2c8f84a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

translations/Dockerfile-Appstore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ LABEL org.opencontainers.image.authors="Joas Schilling <joas.schilling@nextcloud
55
# Install python
66
RUN apt-get update -q && \
77
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --no-install-recommends \
8+
build-essential \
89
python3 \
10+
python3-dev \
911
python3-pip \
1012
python3-venv \
1113
python3-setuptools \

translations/handleAppstoreTranslations.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ git clone [email protected]:nextcloud/appstore /app --depth 1
1818
# install django
1919
python3 -m venv venv
2020
. venv/bin/activate
21-
pip3 install Django==1.9.8
21+
pip3 install .
2222

2323
# create po files
24-
./manage.py makemessages
24+
python3 manage.py makemessages --all
2525

2626
# Migrate the transifex config to the new client version
2727
tx migrate

0 commit comments

Comments
 (0)