From 0a54c5e3a7774c08bc3014d9b1cc4238dfd6509a Mon Sep 17 00:00:00 2001 From: Gary Yendell Date: Fri, 2 Aug 2024 15:24:06 +0000 Subject: [PATCH] Write bob files to /epics/opi in container --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index ff472fc..ef016f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,11 @@ FROM python:${PYTHON_VERSION}-slim as runtime COPY --from=build /venv/ /venv/ ENV PATH=/venv/bin:$PATH +# Make directory to run inside and generate bob files +RUN mkdir -p /epics/opi + +WORKDIR /epics/opi + # change this entrypoint if it is not the same as the repo ENTRYPOINT ["odin-fastcs"] CMD ["--version"]