File size: 304 Bytes
772e3c8
7126129
3607227
772e3c8
 
3607227
 
b37688c
e614414
3607227
4b9057c
772e3c8
 
e614414
772e3c8
fa83ad4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"]