Skip to content

Commit d74e7f6

Browse files
committed
fix(translations): Fix appstore docker setup
Signed-off-by: Joas Schilling <[email protected]>
1 parent 03ed20b commit d74e7f6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

translations/Dockerfile-Appstore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ RUN apt-get update -q && \
77
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --no-install-recommends \
88
python3 \
99
python3-pip \
10+
python3-venv \
1011
python3-setuptools \
1112
python3-wheel \
1213
&& apt-get clean

translations/handleAppstoreTranslations.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ gpg --list-keys
1616
git clone [email protected]:nextcloud/appstore /app --depth 1
1717

1818
# install django
19-
pip3 install --user pipenv
20-
pipenv shell
19+
python3 -m venv venv
20+
. venv/bin/activate
2121
pip3 install Django==1.9.8
2222

2323
# create po files

0 commit comments

Comments
 (0)