Skip to content

Commit e1dba7f

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

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
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: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,7 @@ 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/
13-
1411
# Set up a virtual environment and put it in PATH
1512
RUN python -m venv /venv
1613
ENV PATH=/venv/bin:$PATH
1714
RUN pip install .
18-
19-
ENV EPICS_CA_SERVER_PORT=8064
20-
ENV EPICS_CA_REPEATER_PORT=8065
21-
22-
ENTRYPOINT [ "virtac" ]
23-
CMD ["-v"]

0 commit comments

Comments
 (0)