Skip to content

Commit

Permalink
Merge pull request #6 from sunbird-cb/4.8.0-retireFix
Browse files Browse the repository at this point in the history
4.8.0 retire fix
  • Loading branch information
karthik-tarento authored Feb 14, 2024
2 parents abcf293 + dd96505 commit 4b9728c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ RUN npm install --unsafe-perm

FROM node:8.11-slim
MAINTAINER "Manojvv" "[email protected]"
RUN sed -i '/jessie-updates/d' /etc/apt/sources.list \
&& apt update && apt install openssl imagemagick -y \
# Use a local mirror for Debian Jessie
RUN echo "deb http://archive.debian.org/debian/ jessie main" > /etc/apt/sources.list
RUN echo "deb-src http://archive.debian.org/debian/ jessie main" >> /etc/apt/sources.list
RUN echo "deb http://archive.debian.org/debian-security/ jessie/updates main" >> /etc/apt/sources.list
RUN echo "deb-src http://archive.debian.org/debian-security/ jessie/updates main" >> /etc/apt/sources.list
RUN apt-get -o Acquire::Check-Valid-Until=false update
RUN apt install openssl imagemagick -y --force-yes \
&& apt-get clean \
&& useradd -m sunbird
USER sunbird
Expand Down
2 changes: 1 addition & 1 deletion src/config/contentProviderApiConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"API": {
"CREATE_CONTENT_URI": "/content/v3/create",
"SEARCH_CONTENT_URI": "/content/v3/search",
"SEARCH_URI": "/v3/search",
"SEARCH_URI": "/v4/search",
"UPDATE_CONTENT_URI": "/content/v3/update",
"GET_CONTENT_URI": "/content/v3/read",
"REVIEW_CONTENT_URI": "/content/v3/review",
Expand Down

0 comments on commit 4b9728c

Please sign in to comment.