Python 68.8%
TypeScript 18.6%
CSS 8.7%
JavaScript 3.3%
HTML 0.6%
1# ==============================================================================2# Author: Simon-Pierre Boucher <contact@spboucher.ai>3# File: Dockerfile (ka-apartments-com)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