-
Notifications
You must be signed in to change notification settings - Fork 747
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #532 from qilingframework/dev
getting ready for 1.1.3
- Loading branch information
Showing
57 changed files
with
2,331 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: sync to gitee | ||
on: | ||
push: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: acefei/sync-repo-action@master | ||
with: | ||
ssh_private_key: ${{ secrets.GITEE_KEY }} | ||
target_repo: ssh://[email protected]/qilingframework/qiling.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,29 @@ | ||
FROM python:3.6-alpine | ||
|
||
MAINTAINER "Kevin Foo <[email protected]>" | ||
|
||
ENV PIP_NO_CACHE_DIR=1 | ||
|
||
RUN apk add --no-cache \ | ||
gcc \ | ||
make \ | ||
cmake \ | ||
libtool \ | ||
automake \ | ||
autoconf \ | ||
libmagic \ | ||
g++ \ | ||
linux-headers \ | ||
git \ | ||
libstdc++ \ | ||
bash \ | ||
vim | ||
FROM python:3.6-slim AS builder | ||
|
||
LABEL maintainer="Kevin Foo <[email protected]>" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update \ | ||
&& apt-get -y upgrade \ | ||
&& apt-get install -y --no-install-recommends cmake build-essential gcc git | ||
|
||
RUN git clone -b dev https://github.com/qilingframework/qiling.git \ | ||
&& cd qiling \ | ||
&& pip3 install . \ | ||
&& rm -rf /tmp/* | ||
&& cd qiling \ | ||
&& pip wheel . -w wheels | ||
|
||
FROM python:3.6-slim AS base | ||
|
||
COPY --from=builder /qiling /qiling | ||
|
||
WORKDIR /qiling | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y libmagic-dev \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& pip3 install wheels/*.whl \ | ||
&& rm -rf wheels | ||
|
||
ENV HOME /qiling | ||
|
||
CMD bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.