Update requirements to fix sync with useOAuthForSyncToken enabled

This fixes authentication with identity.sync.useOAuthForSyncToken
enabled which requires newer tokenserver and syncstorage versions.

Closes: https://github.com/mozilla-services/syncserver/issues/218
Closes: https://github.com/mozilla-services/syncserver/issues/225
This commit is contained in:
Louis Sautier 2020-09-02 21:58:03 +02:00
parent e1aab54cbc
commit 529dafc6f2
No known key found for this signature in database
GPG Key ID: A777716B30AE82E3
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ WORKDIR /app
COPY ./requirements.txt /app/requirements.txt COPY ./requirements.txt /app/requirements.txt
COPY ./dev-requirements.txt /app/dev-requirements.txt COPY ./dev-requirements.txt /app/dev-requirements.txt
RUN apk --no-cache update \ RUN apk --no-cache update \
&& apk add dumb-init libstdc++ libffi-dev openssl-dev g++ \ && apk add bash dumb-init gcc libstdc++ libffi-dev make mysql-dev musl-dev ncurses-dev openssl-dev g++ \
&& pip install --upgrade pip \ && pip install --upgrade pip \
&& pip install --upgrade --no-cache-dir -r requirements.txt \ && pip install --upgrade --no-cache-dir -r requirements.txt \
&& pip install --upgrade --no-cache-dir -r dev-requirements.txt \ && pip install --upgrade --no-cache-dir -r dev-requirements.txt \

View File

@ -10,5 +10,5 @@ configparser==3.5
mozsvc==0.9 mozsvc==0.9
futures==3.0 futures==3.0
soupsieve==1.9.5 soupsieve==1.9.5
https://github.com/mozilla-services/tokenserver/archive/1.4.5.zip https://github.com/mozilla-services/tokenserver/archive/1.5.11.zip
https://github.com/mozilla-services/server-syncstorage/archive/1.6.14.zip https://github.com/mozilla-services/server-syncstorage/archive/1.8.0.zip