Skip to content

Commit

Permalink
chore: revert testing branch name in curl statement
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Nov 14, 2024
1 parent 28b7842 commit 71869c9
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/course-discovery.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ CMD gunicorn --bind=0.0.0.0:8381 --workers 2 --max-requests=1000 -c course_disco

FROM app AS dev

RUN curl -L -o ${DISCOVERY_CODE_DIR}/course_discovery/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/huniafatima/add-devstack-config/py_configuration_files/course-discovery.py
RUN curl -L -o ${DISCOVERY_CODE_DIR}/course_discovery/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/main/py_configuration_files/course-discovery.py

ENV DJANGO_SETTINGS_MODULE "course_discovery.settings.devstack"

Expand Down
4 changes: 1 addition & 3 deletions dockerfiles/ecommerce.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ CMD gunicorn --bind=0.0.0.0:18130 --workers 2 --max-requests=1000 -c ecommerce/d

FROM app AS dev

#RUN curl -L -o ${DISCOVERY_CODE_DIR}/course_discovery/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/huniafatima/add-devstack-config/py_configuration_files/course-discovery.py

ENV DJANGO_SETTINGS_MODULE "ecommerce.settings.devstack"

RUN mkdir requirements
Expand All @@ -92,6 +90,6 @@ RUN touch ${ECOMMERCE_APP_DIR}/ecommerce_env
# every time any bit of code is changed.
RUN curl -L https://github.com/openedx/ecommerce/archive/refs/heads/2u/main.tar.gz | tar -xz --strip-components=1

RUN curl -L -o ${ECOMMERCE_CODE_DIR}/ecommerce/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/huniafatima/add-devstack-config/py_configuration_files/ecommerce.py
RUN curl -L -o ${ECOMMERCE_CODE_DIR}/ecommerce/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/main/py_configuration_files/ecommerce.py

CMD while true; do python ./manage.py runserver 0.0.0.0:18130; sleep 2; done
2 changes: 1 addition & 1 deletion dockerfiles/edx-analytics-dashboard.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ RUN pip install --no-cache-dir -r requirements/production.txt

RUN curl -L https://github.com/edx/edx-analytics-dashboard/archive/refs/heads/master.tar.gz | tar -xz --strip-components=1

RUN curl -L -o ${INSIGHTS_CODE_DIR}/analytics_dashboard/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/huniafatima/add-devstack-config/py_configuration_files/course-discovery.py
RUN curl -L -o ${INSIGHTS_CODE_DIR}/analytics_dashboard/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/main/py_configuration_files/course-discovery.py

RUN nodeenv ${INSIGHTS_NODEENV_DIR} --node=18.20.2 --prebuilt \
&& npm install -g [email protected]
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/edx-analytics-data-api.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ CMD ["gunicorn" , "-b", "0.0.0.0:8100", "--pythonpath", "/edx/app/analytics_api/

FROM base AS dev

RUN curl -L -o ${ANALYTICS_API_CODE_DIR}/analyticsdataserver/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/huniafatima/add-devstack-config/py_configuration_files/analytics_data_api.py
RUN curl -L -o ${ANALYTICS_API_CODE_DIR}/analyticsdataserver/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/main/py_configuration_files/analytics_data_api.py

ENV DJANGO_SETTINGS_MODULE "analyticsdataserver.settings.devstack"

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/edx-notes-api.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ EXPOSE 8120

FROM app AS dev

RUN curl -L -o ${NOTES_VENV_DIR}/notesserver/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/huniafatima/add-devstack-config/py_configuration_files/edx_notes_api.py
RUN curl -L -o ${NOTES_VENV_DIR}/notesserver/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/main/py_configuration_files/edx_notes_api.py

ENV DJANGO_SETTINGS_MODULE "notesserver.settings.devstack"

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/registrar.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ RUN pip install --no-cache-dir -r ${REGISTRAR_CODE_DIR}/requirements/devstack.tx
# cloning the repository after requirements installation
RUN curl -L https://github.com/edx/registrar/archive/refs/heads/master.tar.gz | tar -xz --strip-components=1

RUN curl -L -o ${REGISTRAR_CODE_DIR}/registrar/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/huniafatima/add-devstack-config/py_configuration_files/registrar.py
RUN curl -L -o ${REGISTRAR_CODE_DIR}/registrar/settings/devstack.py https://raw.githubusercontent.com/edx/devstack/main/py_configuration_files/registrar.py

ENV DJANGO_SETTINGS_MODULE registrar.settings.devstack

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/xqueue.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN pip install -r ${XQUEUE_CODE_DIR}/requirements/dev.txt
# cloning git repo
RUN curl -L https://github.com/openedx/xqueue/archive/refs/heads/master.tar.gz | tar -xz --strip-components=1

RUN curl -L -o ${XQUEUE_CODE_DIR}/xqueue/devstack.py https://raw.githubusercontent.com/edx/devstack/huniafatima/add-devstack-config/py_configuration_files/xqueue.py
RUN curl -L -o ${XQUEUE_CODE_DIR}/xqueue/devstack.py https://raw.githubusercontent.com/edx/devstack/main/py_configuration_files/xqueue.py

ENV DJANGO_SETTINGS_MODULE xqueue.devstack

Expand Down

0 comments on commit 71869c9

Please sign in to comment.