File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2727COPY --from=build /venv/ /venv/
2828COPY tests/test_data/beamline_parameters.txt tests/test_data/beamline_parameters.txt
2929ENV PATH=/venv/bin:$PATH
30- ARG BEAMLINE="dev"
31- ENV BEAMLINE=${BEAMLINE}
3230
3331# change this entrypoint if it is not the same as the repo
3432CMD daq-config-server
Original file line number Diff line number Diff line change @@ -14,12 +14,10 @@ def check_server_dependencies():
1414 import uvicorn # noqa
1515 from fastapi import FastAPI # noqa
1616
17- server_dependencies_exist = True
17+ return True
1818
1919 except ImportError :
20- server_dependencies_exist = False
21-
22- return server_dependencies_exist
20+ return False
2321
2422
2523def main ():
You can’t perform that action at this time.
0 commit comments