bmselektro-ai / Dockerfile
janushex's picture
Create Dockerfile
c0cfde4 verified
raw
history blame
252 Bytes
# Bāzes Python attēls
FROM python:3.10
# Iestatām darba direktoriju
WORKDIR /app
# Kopējam visus failus
COPY . /app
# Instalējam atkarības
RUN pip install --no-cache-dir -r requirements.txt
# Startējam Flask serveri
CMD ["python", "app.py"]