Add Dockerfile and devcontainer

This commit is contained in:
thePR0M3TH3AN
2025-06-19 11:35:23 -04:00
parent 0e4d5a3979
commit 5c5b25837e
3 changed files with 50 additions and 0 deletions

26
Dockerfile Normal file
View 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"]