diff --git a/backend/shared/Dockerfile b/backend/shared/Dockerfile index 90bd1263..9927fd20 100644 --- a/backend/shared/Dockerfile +++ b/backend/shared/Dockerfile @@ -18,8 +18,8 @@ RUN pipenv install --system # the Pipfile can be removed from the container. This makes way for the # pepenv to use these files to install dependencies for the Selene services # or applications that will use this Docker config -RUN rm /opt/selene/Pipfile -RUN rm /opt/selene/Pipfile.lock +RUN rm Pipfile +RUN rm Pipfile.lock # Copy the applicaction code to the image COPY selene_util /opt/selene/selene_util diff --git a/frontend/internet/projects/market/src/environments/environment.prod.ts b/frontend/internet/projects/market/src/environments/environment.prod.ts index 42d0ba1e..6c82f43b 100644 --- a/frontend/internet/projects/market/src/environments/environment.prod.ts +++ b/frontend/internet/projects/market/src/environments/environment.prod.ts @@ -1,4 +1,5 @@ export const environment = { + production: true, chatUrl: 'https://chat.mycroft.ai', forumUrl: 'https://forum.mycroft.ai', singleSignOnUrl: 'https://sso.mycroft.ai',