Merge branch 'development' of https://github.com/marcusbakker/DeTTECT-private into development
commit
10a1a08330
|
@ -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
|
|
@ -0,0 +1,12 @@
|
||||||
|
# DeTT&CT files
|
||||||
|
cache/
|
||||||
|
output/
|
||||||
|
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
.DS_Store
|
||||||
|
.vscode
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue