Files
api/services/nginx/app/resources/edge-gateway-agent/Dockerfile.edge-agent
T

10 lines
241 B
Docker

ARG BASE_IMAGE=php:8.2-cli-bookworm
FROM ${BASE_IMAGE}
WORKDIR /opt/truckwash-edge-agent
COPY agent.php /opt/truckwash-edge-agent/agent.php
ENTRYPOINT ["php", "/opt/truckwash-edge-agent/agent.php"]
CMD ["--config", "/config/config.json"]