SPB Git forge

spb/qc-election

Public
20commits 1branches 0releases
4.9 MBsize
maindefault branch
20 days agolast push
Python 66.6% HTML 24.8% CSS 4.9% JavaScript 3.6%
399 B · 10 lines docker
Raw Blame History
1# ==============================================================================2# Author: Simon-Pierre Boucher <contact@spboucher.ai>3# File:   Dockerfile (qc-social-pulse)4# ==============================================================================5FROM apify/actor-python:3.126COPY requirements.txt ./7RUN pip install --no-cache-dir -r requirements.txt8COPY . ./9CMD ["python3", "-m", "src"]10