Skip to content

Commit 9724b50

Browse files
committed
docker: migrate to Poetry
1 parent 6901f11 commit 9724b50

File tree

1 file changed

+25
-17
lines changed

1 file changed

+25
-17
lines changed

Dockerfile

+25-17
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,39 @@
1-
FROM python:3.8-slim AS builder
1+
FROM python:3-slim AS base
22

3-
LABEL maintainer="Kevin Foo <chfl4gs@qiling.io>"
3+
WORKDIR /qiling
44

5+
# hadolint global ignore=DL3008,DL3013
56
ENV DEBIAN_FRONTEND=noninteractive
6-
ENV AM_I_IN_A_DOCKER_CONTAINER Yes
7+
ENV AM_I_IN_A_DOCKER_CONTAINER=True
78

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
1113

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/*
1317

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
1621

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]>"
1828

1929
COPY --from=builder /qiling /qiling
2030

2131
WORKDIR /qiling
2232

2333
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/
3038

31-
CMD bash
39+
CMD ["bash"]

0 commit comments

Comments
 (0)