We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 379b873 commit a76d313Copy full SHA for a76d313
Dockerfile.dev
@@ -0,0 +1,23 @@
1
+# DevNet Associate NETCONF Intro Development Dockerfile
2
+FROM python:3.9-slim-buster
3
+
4
+LABEL \
5
+ maintainer='Tim Hull <[email protected]>' \
6
+ version='1.0'
7
8
+# Expose TCP 8000 for MkDocs server
9
+EXPOSE 8000/TCP
10
11
+# Expose TCP 8888 for JupyterLab server
12
+EXPOSE 8888/TCP
13
14
+# Update repositories and install curl
15
+RUN apt-get update && \
16
+ apt-get -y install curl git
17
18
+# Install Python packages
19
+RUN python -m pip install --upgrade pip && \
20
+ python -m pip install -r requirements/requirements_dev.txt
21
22
+# Start the bash shell at container startup
23
+CMD ["/bin/bash"]
0 commit comments