Skip to content

Commit

Permalink
Un-adjusting the Dockerfile, fixing routes
Browse files Browse the repository at this point in the history
well that was dumb
  • Loading branch information
jkachel committed Mar 28, 2024
1 parent 27ebacf commit b23db3b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ RUN pip install "poetry==$POETRY_VERSION"

COPY pyproject.toml /src
COPY poetry.lock /src
# it seems poetry won't finish if there's no README.md
COPY README.md /src
RUN chown -R mitodl:mitodl /src
RUN mkdir ${VIRTUAL_ENV} && chown -R mitodl:mitodl ${VIRTUAL_ENV}

Expand Down
2 changes: 1 addition & 1 deletion main/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
re_path(r"", include("openapi.urls")),
re_path(r"", include("learning_resources.urls")),
re_path(r"", include("articles.urls")),
*features_router.urls,
# React App
re_path(r"^$", index, name="main-index"),
re_path(r"^privacy-statement/", index, name="privacy-statement"),
Expand All @@ -60,6 +59,7 @@
re_path(r"^dashboard/", index, name="dashboard"),
re_path(r"^program_letter/", index, name="programletter"),
re_path(r"^fields/", index, name="fields"),
re_path(r"", include(features_router.urls)),
# Hijack
re_path(r"^hijack/", include("hijack.urls", namespace="hijack")),
re_path(r"", include("news_events.urls")),
Expand Down

0 comments on commit b23db3b

Please sign in to comment.