We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a264075 + ccfc450 commit ecbac7fCopy full SHA for ecbac7f
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.6-slim AS builder
+FROM python:3.8-slim AS builder
2
3
LABEL maintainer="Kevin Foo <[email protected]>"
4
@@ -13,14 +13,14 @@ COPY . /qiling
13
RUN cd /qiling \
14
&& pip wheel . -w wheels
15
16
-FROM python:3.6-slim AS base
+FROM python:3.8-slim AS base
17
18
COPY --from=builder /qiling /qiling
19
20
WORKDIR /qiling
21
22
RUN apt-get update \
23
- && apt-get install -y --no-install-recommends unzip \
+ && apt-get install -y --no-install-recommends unzip apt-utils \
24
&& rm -rf /var/lib/apt/lists/* \
25
&& pip3 install wheels/*.whl \
26
&& rm -rf wheels
0 commit comments