SPB Git forge

spb/lou-ka

Public

Lou·Ka — tous les logements à louer du Québec, un seul endroit.

232commits 1branches 0releases
172.9 MBsize
maindefault branch
3 days agolast push
HTML 98.9% Python 0.6%
442 B · 11 lines docker
Raw Blame History
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