wakurtosis/wsl-module/dockerfile

9 lines
207 B
Plaintext
Raw Normal View History

2022-12-21 15:35:34 +00:00
FROM python:3.11.0
LABEL Maintainer="Daimakaimura"
WORKDIR /wsl
COPY wsl.py ./
COPY wsl.yml ./
COPY requirements.txt ./
2022-12-22 09:35:17 +00:00
COPY targets.json ./
2022-12-21 15:35:34 +00:00
RUN pip install -r requirements.txt
CMD [ "python3", "./wsl.py"],