woodpecker-email/Dockerfile
Simon Vieille 65f4049c28
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
refactor all by using PHP instead of Golang
2024-01-15 12:38:30 +01:00

10 lines
114 B
Docker

FROM deblan/php:8.2
WORKDIR /opt/app
COPY . .
RUN composer install
ENTRYPOINT ["php", "/opt/app/bin/console"]