Rectifier / Remotion-app /Dockerfile
Mbonea's picture
intial commit
1c1e321
raw
history blame
No virus
968 Bytes
# Builder stage
FROM python:3.10.0 as builder
RUN useradd -ms /bin/bash admin
WORKDIR /srv
RUN chown -R admin:admin /srv
RUN chmod -R 755 /srv
# Install dependencies
RUN apt-get update && \
apt-get install -y libu2f-udev libvulkan1 mesa-vulkan-drivers wget
# Install Thorium Browser
RUN curl -LO https://github.com/Alex313031/thorium/releases/download/M117.0.5938.157/thorium-browser_117.0.5938.157_amd64.deb && \
dpkg -i thorium-browser_117.0.5938.157_amd64.deb
# Install Node.js and npm
RUN apt-get install -y nodejs npm
USER admin
# Copy the application code
COPY --chown=admin . /srv
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Install JavaScript dependencies (if you have a package.json file)
COPY package*.json ./
RUN npm install
# Command to run the application
CMD uvicorn App.app:app --host 0.0.0.0 --port 7860 --workers 4 & celery -A App.Worker.celery worker -c 4 --loglevel=DEBUG