quantum1fusion8 / Dockerfile
IamSatoshiAI's picture
Rename Dockerfile: to Dockerfile
48a1a8a verified
raw
history blame
352 Bytes
FROM python:3.9-slim # Koristi "slim" verziju za manju veličinu
WORKDIR /app
# Instaliraj system dependencies za Google Cloud
RUN apt-get update && apt-get install -y \
libffi-dev \
libssl-dev \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]