Skip to content

Instantly share code, notes, and snippets.

View debops101's full-sized avatar

debops101

  • Joined Oct 20, 2025
View GitHub Profile
@debops101
debops101 / Dockerfile
Created October 20, 2025 11:02
Integration of Docker & AI in Azure
# Use official Azure Functions Python base image
FROM mcr.microsoft.com/azure-functions/python:4-python3.10
# Set working directory
WORKDIR /home/site/wwwroot
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt