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"]