|
1 |
| -FROM python:3.8-slim AS builder |
| 1 | +FROM python:3-slim AS base |
2 | 2 |
|
3 |
| -LABEL maintainer="Kevin Foo <chfl4gs@qiling.io>" |
| 3 | +WORKDIR /qiling |
4 | 4 |
|
| 5 | +# hadolint global ignore=DL3008,DL3013 |
5 | 6 | ENV DEBIAN_FRONTEND=noninteractive
|
6 |
| -ENV AM_I_IN_A_DOCKER_CONTAINER Yes |
| 7 | +ENV AM_I_IN_A_DOCKER_CONTAINER=True |
7 | 8 |
|
8 |
| -RUN apt-get update \ |
9 |
| - && apt-get -y upgrade \ |
10 |
| - && apt-get install -y --no-install-recommends cmake build-essential gcc git |
| 9 | +RUN apt-get update && apt-get -y upgrade && rm -rf /var/lib/apt/lists/* |
| 10 | + |
| 11 | + |
| 12 | +FROM base AS builder |
11 | 13 |
|
12 |
| -COPY . /qiling |
| 14 | +RUN apt-get update && apt-get install -y --no-install-recommends \ |
| 15 | + cmake build-essential gcc git \ |
| 16 | + && rm -rf /var/lib/apt/lists/* |
13 | 17 |
|
14 |
| -RUN cd /qiling \ |
15 |
| - && pip wheel . -w wheels |
| 18 | +COPY pyproject.toml poetry.lock ./ |
| 19 | +RUN pip3 install --no-cache-dir poetry \ |
| 20 | + && poetry install --no-root --no-directory |
16 | 21 |
|
17 |
| -FROM python:3.8-slim AS base |
| 22 | +COPY qiling/ tests/ examples/ ./ |
| 23 | +RUN poetry install --no-dev && poetry build --format=wheel |
| 24 | + |
| 25 | +FROM base |
| 26 | + |
| 27 | +LABEL maintainer= "Kevin Foo <[email protected]>" |
18 | 28 |
|
19 | 29 | COPY --from=builder /qiling /qiling
|
20 | 30 |
|
21 | 31 | WORKDIR /qiling
|
22 | 32 |
|
23 | 33 | RUN apt-get update \
|
24 |
| - && apt-get install -y --no-install-recommends unzip apt-utils \ |
25 |
| - && rm -rf /var/lib/apt/lists/* \ |
26 |
| - && pip3 install --no-deps wheels/*.whl \ |
27 |
| - && rm -rf wheels |
28 |
| - |
29 |
| -ENV HOME /qiling |
| 34 | + && apt-get install -y --no-install-recommends unzip apt-utils \ |
| 35 | + && rm -rf /var/lib/apt/lists/* \ |
| 36 | + && pip3 install --no-deps --no-cache-dir dist/*.whl \ |
| 37 | + && rm -rf ./dist/ |
30 | 38 |
|
31 |
| -CMD bash |
| 39 | +CMD ["bash"] |
0 commit comments