File: Windows.Dockerfile

package info (click to toggle)
plaso 20260119-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 672,264 kB
  • sloc: python: 93,763; sh: 541; xml: 97; makefile: 19; sql: 14; vhdl: 11
file content (15 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.8-windowsservercore

WORKDIR /usr/src/app

RUN python -m pip install msvc-runtime pywin32 WMI

RUN python -m pip download https://github.com/log2timeline/l2tdevtools/archive/main.zip
RUN powershell.exe -Command Expand-Archive main.zip -DestinationPath .

WORKDIR /usr/src/app/l2tdevtools-main
RUN mkdir dependencies
ENV PYTHONPATH=.
RUN python tools\update.py --download-directory dependencies --preset plaso

WORKDIR /usr/src/app