mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
created dockerfiles
This commit is contained in:
parent
d84c89efaf
commit
02516b9ef2
22
.devcontainer/devcontainer.json
Normal file
22
.devcontainer/devcontainer.json
Normal 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"
|
||||
},
|
||||
}
|
@ -1 +1 @@
|
||||
python3 setup.py sdist bdist_wheel
|
||||
python setup.py sdist bdist_wheel || python3 setup.py sdist bdist_wheel
|
@ -1,4 +1,3 @@
|
||||
FROM python
|
||||
WORKDIR ~/
|
||||
COPY . .
|
||||
RUN cd
|
||||
COPY .. .
|
3
analysis-master/analysis-amd64/docker/Dockerfile-vscode
Normal file
3
analysis-master/analysis-amd64/docker/Dockerfile-vscode
Normal file
@ -0,0 +1,3 @@
|
||||
FROM python
|
||||
WORKDIR ~/
|
||||
# COPY . .
|
Loading…
Reference in New Issue
Block a user