bad84289c4
Features:
- Rust support 🦀 (Thanks to @pepoviola)
- Add a default rewrite rule to PHP apps (to index.php)
- Able to control upgrades in a straightforward way
Fixes:
- Improved upgrade scripts
- Simplified prechecks before deployment
- Fixed path deployments
- Fixed already defined apps redirections
- Better error handling - still needs a lot of improvement here!
6 lines
287 B
Plaintext
6 lines
287 B
Plaintext
FROM node:lts
|
|
LABEL coolify-preserve=true
|
|
COPY --from=coolify-binaries /usr/bin/docker /usr/bin/docker
|
|
COPY --from=coolify-binaries /usr/bin/envsubst /usr/bin/envsubst
|
|
COPY --from=coolify-binaries /usr/bin/jq /usr/bin/jq
|
|
RUN curl -f https://get.pnpm.io/v6.js | node - add --global pnpm@6 |