printshopcreator/.docker/images/php/application/Dockerfile
Thomas 9bb23a01f1
Some checks failed
Gitea Actions Demo / Run-Tests-On-Arm64 (push) Failing after 30s
Gitea Actions Demo / Run-Tests-On-Amd64 (push) Failing after 1m29s
Fixes
2025-02-27 12:03:33 +01:00

21 lines
292 B
Docker

ARG BASE_IMAGE
FROM ${BASE_IMAGE} as base
RUN apt update && apt install -y \
sqlite3 mariadb-client
FROM base as prod
USER $APP_USER_NAME
FROM base as ci
USER $APP_USER_NAME
run apt update && apt install chromium-driver
FROM base as local
FROM base as ci