Lou·Ka — tous les logements à louer du Québec, un seul endroit.
HTML 98.9%
Python 0.6%
1# ==============================================================================2# Author: Simon-Pierre Boucher <contact@spboucher.ai>3# File: Dockerfile (ka-fb-marketplace)4# Desc: Acteur Apify KA — Dockerfile5# ==============================================================================6FROM apify/actor-python:3.127COPY requirements.txt ./8RUN pip install --no-cache-dir -r requirements.txt9COPY . ./10CMD ["python3", "-m", "src"]11