SPB Git forge

spb/rent-ka

Public
8commits 1branches 0releases
7.4 MBsize
maindefault branch
20 days agolast push
Python 68.8% TypeScript 18.6% CSS 8.7% JavaScript 3.3% HTML 0.6%
442 B · 11 lines docker
Raw Blame History
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