14 lines
352 B
Docker
14 lines
352 B
Docker
FROM php:8.2-cli
|
|
|
|
WORKDIR /opt/truckwash-edge-agent
|
|
|
|
RUN set -eux; \
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends ca-certificates; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY services/nginx/app/resources/edge-gateway-agent/ ./
|
|
|
|
ENTRYPOINT ["php", "/opt/truckwash-edge-agent/agent.php"]
|
|
CMD ["--config", "/config/test-gateway.json"]
|