We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Dockerfile to allow easy building of container that contain enjairfy from git repo, which use COPY . instruction and .dockerignore file if needed.
Currently I use (which do git clone inside the container):
FROM python:3 RUN set -ex; \ git clone --depth 1 https://github.com/Storyyeller/enjarify/; \ ln -s /enjarify/enjarify.sh /usr/local/bin/enjarify; WORKDIR /enjarify/ ENTRYPOINT ["python3", "-O", "-m", "enjarify.main"] CMD ["--help"]
build:
docker run --rm -t enjarify .
run example:
docker run --rm -ti --network none -v /host/dex-files/:/f/:ro -v /host/jar-from-dex/:/o/:rw --entrypoint /bin/bash enjarify
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add Dockerfile to allow easy building of container that contain enjairfy from git repo, which use COPY . instruction and .dockerignore file if needed.
Currently I use (which do git clone inside the container):
build:
docker run --rm -t enjarify .
run example:
The text was updated successfully, but these errors were encountered: