From cb9dfb52c17429e76eef0d1f4ce4f5aeae632041 Mon Sep 17 00:00:00 2001 From: Shankari Date: Tue, 12 Nov 2024 17:29:23 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5Remove=20custom=20configuration=20w?= =?UTF-8?q?hile=20building=20base=20manager=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - `config-docker.json`: is no longer needed since we don't support 1.6j (https://github.com/EVerest/everest-demo/pull/80) - `config.json` is no longer needed, since it is removed and replaced by the `component_config` directory (https://github.com/EVerest/libocpp/pull/740) - `device_model_storage_maeve_sp1.db` is now created by the manager at startup based on the `component_config` directory This should now work for the basic (non-ISO/non-OCPP use cases) Signed-off-by: Shankari --- manager/Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/manager/Dockerfile b/manager/Dockerfile index 36821a56..94f560e4 100644 --- a/manager/Dockerfile +++ b/manager/Dockerfile @@ -1,6 +1,6 @@ -FROM --platform=linux/x86_64 ghcr.io/everest/build-kit-alpine@sha256:7494bd6624aee3f882b4f1edbc589879e1d6d0ccc2c58f3f5c87ac1838ccd1de +FROM --platform=linux/x86_64 ghcr.io/everest/build-kit-alpine:1.4.2 -ARG EVEREST_VERSION=2024.3.0 +ARG EVEREST_VERSION=2024.9.0 ENV EVEREST_VERSION=${EVEREST_VERSION} COPY install.sh ./ @@ -17,9 +17,6 @@ RUN git clone https://github.com/EVerest/everest-core.git \ && /entrypoint.sh run-script install # Copy over the custom config *after* compilation and installation -COPY config-docker.json ./dist/share/everest/modules/OCPP/config-docker.json -COPY config.json ./dist/share/everest/modules/OCPP201/config.json -COPY device_model_storage_maeve_sp1.db ./dist/share/everest/modules/OCPP201/device_model_storage.db COPY run-test.sh /ext/source/tests/run-test.sh