Skip to content

Commit a7bf0c1

Browse files
author
Peter Giacomo Lombardo
committed
Add development Dockerfile
1 parent 23df7ae commit a7bf0c1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Development Container
2+
FROM python:3.8.5
3+
4+
RUN apt update -q
5+
RUN apt install -qy vim
6+
7+
WORKDIR /python-sensor
8+
9+
ENV INSTANA_DEBUG=true
10+
ENV PYTHONPATH=/python-sensor
11+
ENV AUTOWRAPT_BOOTSTRAP=instana
12+
13+
COPY . ./
14+
15+
RUN pip install -e .

0 commit comments

Comments
 (0)