Skip to content

Commit

Permalink
fix: docker file temporarily to ignore engines
Browse files Browse the repository at this point in the history
  • Loading branch information
Govind Diwakar committed Nov 6, 2023
1 parent 30bfede commit 3bd0e9b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/medusa-plugin-strapi-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "medusa-plugin-strapi-ts",
"version": "5.0.17",
"version": "5.0.18",
"description": "A plugin for medusa to use strapi in the backend as the cms in typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/medusa-strapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ENV NODE_ENV development
COPY ./public ./public
COPY ./favicon.ico ./favicon.ico

RUN yarn install --ignore-platform --network-timeout 10000000 --force && yarn build
RUN yarn install --ignore-platform --network-timeout 10000000 --force --ignore-engines && yarn build


EXPOSE 1337
Expand Down
2 changes: 1 addition & 1 deletion packages/medusa-strapi/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ COPY ./package.json ./
COPY ./src ./src
COPY ./public ./public
COPY ./favicon.ico ./favicon.ico
RUN yarn config set network-timeout 600000 -g && yarn install --production
RUN yarn config set network-timeout 600000 -g && yarn install --production --ignore-engines
RUN yarn build


Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19413,7 +19413,7 @@ medusa-interfaces@^1.3.7, [email protected]:
integrity sha512-vU1PjepGeglUmEqoBY72gx5Pfj5Uv3VCO3oqYpj6hSz55jhy4xnUNhf4Ttw1mhqGmwtyi9UkHx+aTuCcYx24Ww==

"medusa-plugin-strapi-ts@file:/home/ec2-user/hercules/public-plugins/medusa-strapi-repo/packages/medusa-plugin-strapi-ts":
version "5.0.17"
version "5.0.18"
resolved "file:packages/medusa-plugin-strapi-ts"
dependencies:
"@types/bcrypt" "^5.0.0"
Expand Down

0 comments on commit 3bd0e9b

Please sign in to comment.