mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-05 20:57:12 +00:00
12 lines
279 B
Docker
12 lines
279 B
Docker
FROM ghcr.io/sylius/sylius-php:8.2-fixuid-xdebug-alpine
|
|
|
|
USER root
|
|
RUN apk add --update;
|
|
RUN apk add nano \
|
|
# for all test commands, they use makefile
|
|
make \
|
|
# for the integration tests, they need the frontend running
|
|
nodejs npm yarn \
|
|
;
|
|
|
|
USER sylius
|