1 Star 0 Fork 3

ireading/qiling

forked from qiling/qiling 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 637 Bytes
一键复制 编辑 原始数据 按行查看 历史
chfl4gs 提交于 2022-04-23 14:24 +08:00 . Compile pefile from source
FROM python:3.8-slim AS builder
LABEL maintainer="Kevin Foo <chfl4gs@qiling.io>"
ENV DEBIAN_FRONTEND=noninteractive
ENV AM_I_IN_A_DOCKER_CONTAINER Yes
RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get install -y --no-install-recommends cmake build-essential gcc git
COPY . /qiling
RUN cd /qiling \
&& pip wheel . -w wheels
FROM python:3.8-slim AS base
COPY --from=builder /qiling /qiling
WORKDIR /qiling
RUN apt-get update \
&& apt-get install -y --no-install-recommends unzip apt-utils \
&& rm -rf /var/lib/apt/lists/* \
&& pip3 install --no-deps wheels/*.whl \
&& rm -rf wheels
ENV HOME /qiling
CMD bash
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ireading2021/qiling.git
git@gitee.com:ireading2021/qiling.git
ireading2021
qiling
qiling
dev

搜索帮助