- Issue created by @cpierce42
- Merge request !9511Add boolean to nightwatch tests. Add variable to .env.example β (Open) created by cpierce42
- Status changed to Needs review
2 months ago 10:12pm 16 September 2024 - π¬π§United Kingdom longwave UK
You run
apt install nodejs
, so why not installsudo
in the container as well? - Status changed to Needs work
2 months ago 6:32pm 17 September 2024 - πΊπΈUnited States smustgrave
Thanks @longwave for taking a look.
Moving to NW for #4 and the MR is throwing errors.
- πͺπͺEstonia tormi Tallinn
Use custom dockerfile instead of build_as_root for caching Lando build steps.
.lando.yml:
services: appserver: overrides: build: context: ./.lando dockerfile: appserver.Dockerfile
.lando/appserver.Dockerfile:
# Overrride Lando's PHP service. FROM devwithlando/php:8.3-fpm-4 # Install vim, sudo, node 20, and npm globally RUN apt-get update && \ apt-get install -y --no-install-recommends \ gnupg2 \ sudo \ vim \ wget \ && wget -qO- https://deb.nodesource.com/setup_20.x | bash - && \ apt-get install -y nodejs \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* # Verify installation RUN node -v && npm -v
- π³πΏNew Zealand quietone
Changes are made on on 11.x (our main development branch) first, and are then back ported as needed according to our policies.
We use the phpunit component for testing issues, so updating that.