Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM python:3.10-buster

ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt -y install cmake build-essential && rm -rf /var/lib/apt/lists/*

COPY . /usr/src/pycdc
RUN cd /usr/src/pycdc && cmake . && make && make install
17 changes: 17 additions & 0 deletions README.Docker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Decompyle++ in Docker

## build

```sh
docker build -t pycdc:latest .
```

## run

```sh
cd /samples/directory

docker run --rm -ti -v `pwd`:/data/ pycdc:latest pycdc /data/sample.pyc
# (or)
docker run --rm -ti -v `pwd`:/data/ pycdc:latest pycdas /data/sample.pyc
```