All checks were successful
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-runners (push) Has been skipped
CI/CD / test-frontend (push) Successful in 6s
CI/CD / test-go-pg (push) Successful in 2m39s
CI/CD / test-sqlite (push) Successful in 2m55s
CI/CD / build-and-deploy (push) Successful in 29s
Co-authored-by: Jeffrey Smith <jasafpro@gmail.com> Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
12 lines
546 B
Docker
12 lines
546 B
Docker
# ci/Dockerfile.test-runner — Pre-built Playwright test runner
|
|
#
|
|
# Build & push (one-time, repeat when Playwright version bumps):
|
|
# docker build -t registry.gobha.me:5000/ci-test-runner:latest -f ci/Dockerfile.test-runner .
|
|
# docker push registry.gobha.me:5000/ci-test-runner:latest
|
|
#
|
|
# The CI compose override uses this image directly, avoiding npm install
|
|
# on every run. Only the ci/ scripts are COPY'd at compose build time.
|
|
FROM mcr.microsoft.com/playwright:v1.52.0-noble
|
|
WORKDIR /work
|
|
RUN npm init -y && npm install playwright@1.52.0
|