craw_web / Dockerfile
euler314's picture
Update Dockerfile
fa83ad4 verified
raw
history blame contribute delete
304 Bytes
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"]