FROM mcr.microsoft.com/playwright:v1.37.0-jammy | |
WORKDIR /app | |
# Install Python dependencies | |
COPY requirements.txt ./ | |
RUN pip3 install --no-cache-dir -r requirements.txt | |
# Copy application code | |
COPY . . | |
# Set permissions if needed | |
RUN chmod -R 755 /app | |
# Run the app | |
CMD ["streamlit", "run", "app.py"] |