This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |