mirror of
https://github.com/PR0M3TH3AN/VoxVera.git
synced 2025-09-07 06:28:43 +00:00
Add Dockerfile and devcontainer
This commit is contained in:
8
.devcontainer/devcontainer.json
Normal file
8
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "VoxVera",
|
||||
"build": {
|
||||
"dockerfile": "../Dockerfile",
|
||||
"context": ".."
|
||||
},
|
||||
"workspaceFolder": "/workspace/VoxVera"
|
||||
}
|
26
Dockerfile
Normal file
26
Dockerfile
Normal file
@@ -0,0 +1,26 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
# Install system dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
tor onionshare-cli \
|
||||
jq qrencode imagemagick poppler-utils \
|
||||
nodejs npm \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install npm tools for HTML/JS processing
|
||||
RUN npm install -g javascript-obfuscator html-minifier-terser
|
||||
|
||||
# Copy VoxVera source
|
||||
COPY . /opt/voxvera
|
||||
ENV PYTHONPATH=/opt/voxvera
|
||||
|
||||
# Make voxvera command available
|
||||
RUN echo '#!/bin/sh\nexec python3 -m voxvera.cli "$@"' > /usr/local/bin/voxvera \
|
||||
&& chmod +x /usr/local/bin/voxvera
|
||||
|
||||
# Prepare flyers volume
|
||||
RUN mkdir /flyers && ln -s /flyers /opt/voxvera/host
|
||||
VOLUME /flyers
|
||||
WORKDIR /opt/voxvera
|
||||
|
||||
CMD ["voxvera", "quickstart"]
|
16
docs/docker.md
Normal file
16
docs/docker.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# Docker Usage
|
||||
|
||||
A prebuilt image containing Tor, OnionShare and the `voxvera` CLI is published to
|
||||
`ghcr.io/voxvera/voxvera`.
|
||||
|
||||
```bash
|
||||
# pull the image
|
||||
docker pull ghcr.io/voxvera/voxvera:latest
|
||||
|
||||
# run voxvera quickstart with flyers stored in ./flyers
|
||||
mkdir -p flyers
|
||||
docker run -it --rm -v "$(pwd)/flyers:/flyers" ghcr.io/voxvera/voxvera
|
||||
```
|
||||
|
||||
The container uses `/flyers` as the working directory and runs `voxvera quickstart`
|
||||
by default. All generated flyer files will appear in the mounted `flyers` folder.
|
Reference in New Issue
Block a user