Merge branch 'development' of https://github.com/marcusbakker/DeTTECT-private into development

master
Ruben Bouman 2020-02-20 12:03:08 +01:00
commit 10a1a08330
3 changed files with 28 additions and 2 deletions

View File

@ -1 +1,11 @@
**/.git **/.git
.dockerignore
.gitignore
YAML-editor/public/
YAML-editor/src/
YAML-editor/node_modules/
YAML-editor/package-lock.json
YAML-editor/package.json
YAML-editor/vue.config.js
YAML-editor/yarn.lock
YAML-editor/.eslintrc.json

12
.gitignore vendored Normal file
View File

@ -0,0 +1,12 @@
# DeTT&CT files
cache/
output/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Misc
.DS_Store
.vscode

View File

@ -1,6 +1,6 @@
FROM python:3.8-alpine FROM python:3.8-alpine
LABEL version="1.2.7" LABEL version="1.3"
# update repository and install Linux packages # update repository and install Linux packages
RUN apk update && \ RUN apk update && \
@ -17,3 +17,7 @@ RUN pip install --no-cache-dir -r requirements.txt
RUN mkdir -p input RUN mkdir -p input
# within this directory, the output files from DeTT&CT are written. Such as ATT&CK Navigator layer files. # within this directory, the output files from DeTT&CT are written. Such as ATT&CK Navigator layer files.
RUN mkdir -p output RUN mkdir -p output
# set an environment variable for the YAML editor and expose port 8080
ENV DeTTECT_DOCKER_CONTAINER 1
EXPOSE 8080/tcp