Skip to content

Commit b9a31fc

Browse files
committed
Remove virtac config from Dockerfile and launch.json
1 parent c6a1037 commit b9a31fc

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

.vscode/launch.json

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,5 @@
1919
"PYTEST_RAISE": "1",
2020
},
2121
},
22-
{
23-
"name": "Python Debugger: Virtac",
24-
"type": "debugpy",
25-
"request": "launch",
26-
"program": "/venv/bin/virtac",
27-
"console": "integratedTerminal",
28-
"env": {
29-
"EPICS_CA_SERVER_PORT": "7064",
30-
"EPICS_CA_REPEATER_PORT": "7065",
31-
},
32-
},
3322
]
3423
}

Dockerfile

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
88
graphviz \
99
&& rm -rf /var/lib/apt/lists/*
1010

11-
WORKDIR /virtac
12-
COPY . /virtac/
11+
WORKDIR /atip
12+
COPY . /atip/
1313

1414
# Set up a virtual environment and put it in PATH
1515
RUN python -m venv /venv
1616
ENV PATH=/venv/bin:$PATH
1717
RUN pip install .
1818

19-
ENV EPICS_CA_SERVER_PORT=8064
20-
ENV EPICS_CA_REPEATER_PORT=8065
21-
22-
ENTRYPOINT [ "virtac" ]
23-
CMD ["-v"]
19+
ENTRYPOINT [ "atip" ]
20+
CMD ["--version"]

0 commit comments

Comments
 (0)