a year ago
I am trying to build an ionic vue application but I'm am getting build errors on deploy.
16 ERROR: process "/bin/bash -ol pipefail -c npm ci" did not complete successfully: exit code: 1
ERROR: failed to solve: process "/bin/bash -ol pipefail -c npm ci" did not complete successfully: exit code: 1
Error: Docker build failed
any help would be appreciated
ⓘ Deployment information is only viewable by Project members and Railway admins.
3 Replies
a year ago
You are likely trying to run a development server on Railway since neither Ionic or Vite come with protection web servers.
https://github.com/railwayapp-templates/vue-starter (Its not an Ionic project but that doesn't matter)
Copy the nixpacks.toml and Caddyfile from this repo into yours, and if you have any build or start commands set in your service settings, remove them.
a year ago
I am already using those files from the vue-starter kit.
To add a bit more detail, when i build locally, I'm using the following commands:
npm i --legacy-peer-deps
ionic serve
Any other suggestions?