Skip to content

Commit a76d313

Browse files
committed
Initial commit
1 parent 379b873 commit a76d313

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Dockerfile.dev

+23
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)