created dockerfiles

This commit is contained in:
art 2020-04-05 19:04:07 +00:00
parent d84c89efaf
commit 02516b9ef2
4 changed files with 27 additions and 3 deletions

View File

@ -0,0 +1,22 @@
{
"name": "TRA Analysis Development Environment",
"build": {
"dockerfile": "../analysis-master/analysis-amd64/docker/Dockerfile-vscode",
},
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint",
"python.testing.pytestPath": "/usr/local/py-utils/bin/pytest"
},
}

View File

@ -1 +1 @@
python3 setup.py sdist bdist_wheel
python setup.py sdist bdist_wheel || python3 setup.py sdist bdist_wheel

View File

@ -1,4 +1,3 @@
FROM python
WORKDIR ~/
COPY . .
RUN cd
COPY .. .

View File

@ -0,0 +1,3 @@
FROM python
WORKDIR ~/
# COPY . .