Skip to content

Commit ecbac7f

Browse files
authored
Merge pull request #789 from chfl4gs/dev
Docker python to v 3.8
2 parents a264075 + ccfc450 commit ecbac7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.6-slim AS builder
1+
FROM python:3.8-slim AS builder
22

33
LABEL maintainer="Kevin Foo <[email protected]>"
44

@@ -13,14 +13,14 @@ COPY . /qiling
1313
RUN cd /qiling \
1414
&& pip wheel . -w wheels
1515

16-
FROM python:3.6-slim AS base
16+
FROM python:3.8-slim AS base
1717

1818
COPY --from=builder /qiling /qiling
1919

2020
WORKDIR /qiling
2121

2222
RUN apt-get update \
23-
&& apt-get install -y --no-install-recommends unzip \
23+
&& apt-get install -y --no-install-recommends unzip apt-utils \
2424
&& rm -rf /var/lib/apt/lists/* \
2525
&& pip3 install wheels/*.whl \
2626
&& rm -rf wheels

0 commit comments

Comments
 (0)