Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 3d62580

Browse files
committed
Adding dev container for aymericdamien/TensorFlow-Examples
1 parent d8be439 commit 3d62580

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#-----------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See LICENSE in the project root for license information.
4+
#-----------------------------------------------------------------------------------------
5+
6+
FROM python:3
7+
8+
# Install git
9+
RUN apt-get update && apt-get -y install git
10+
11+
# Install dev tools
12+
RUN pip install pylint
13+
14+
# Install tensorflow
15+
RUN pip install tensorflow
16+
17+
# Clean up
18+
RUN apt-get autoremove -y \
19+
&& apt-get clean -y \
20+
&& rm -rf /var/lib/apt/lists/*
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "TensorFlow-Examples",
3+
"dockerFile": "Dockerfile",
4+
"extensions": [
5+
"ms-python.python"
6+
]
7+
}

0 commit comments

Comments
 (0)