Skip to content

Commit

Permalink
[DOP-4097]: Add the right shared.mk path for right dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
branberry committed Nov 21, 2023
1 parent 313a29b commit 0f4acd5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.enhanced
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ USER docsworker-xlarge
WORKDIR ${WORK_DIRECTORY}

# get shared.mk
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/meta/makefiles/shared.mk -o shared.mk
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/DOP-4097-mk/makefiles/shared.mk -o shared.mk

# install snooty frontend and docs-tools
RUN git clone -b v${SNOOTY_FRONTEND_VERSION} --depth 1 https://github.com/mongodb/snooty.git \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.legacy
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ COPY --chown=builduser:builduser tsconfig*.json ./
COPY --chown=builduser:builduser . ./

USER builduser
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/DOP-4097-mk/makefiles/shared.mk -o shared.mk
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/meta/makefiles/shared.mk -o shared.mk
RUN npm install
RUN npm run build

Expand Down
2 changes: 1 addition & 1 deletion tests/data/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class TestDataProvider {
const genericCommands = TestDataProvider.getCommonBuildCommands(job);
return Array<string>().concat(genericCommands.slice(0, genericCommands.length - 1), [
'make get-build-dependencies',
'make next-gen-parse',
'make next-gen-parse NO_CACHING=--no-caching',
`make persistence-module JOB_ID=${job._id}`,
'make next-gen-html',
`make oas-page-build MUT_PREFIX=${job.payload.mutPrefix}`,
Expand Down

0 comments on commit 0f4acd5

Please sign in to comment.