2024-12-18 01:41:12 +01:00
|
|
|
# FROM python:3.9-slim
|
|
|
|
#
|
|
|
|
# WORKDIR /usr/src/app
|
|
|
|
#
|
|
|
|
# COPY requirements.txt .
|
|
|
|
# RUN pip install --trusted-host pypi.python.org -r requirements.txt
|
|
|
|
#
|
|
|
|
# COPY . .
|
|
|
|
#
|
|
|
|
# RUN apt-get update && apt-get install -y wget unzip && \
|
|
|
|
# wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
|
|
|
|
# apt install -y ./google-chrome-stable_current_amd64.deb && \
|
|
|
|
# rm ./google-chrome-stable_current_amd64.deb && \
|
|
|
|
# apt-get clean
|
|
|
|
#
|
2024-11-12 05:17:00 +01:00
|
|
|
|
2024-12-18 01:41:12 +01:00
|
|
|
# Use an official Python runtime as a parent image
|
|
|
|
FROM mcr.microsoft.com/playwright/python:v1.49.1-jammy
|
|
|
|
|
|
|
|
# Set the working directory to /app
|
2024-11-12 05:17:00 +01:00
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
2024-12-18 01:41:12 +01:00
|
|
|
# Copy the current directory contents into the container at /app
|
2024-11-12 05:17:00 +01:00
|
|
|
COPY requirements.txt .
|
|
|
|
|
2024-12-18 01:41:12 +01:00
|
|
|
# Run the command to install any necessary dependencies
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
2024-11-12 05:17:00 +01:00
|
|
|
|
2024-12-18 01:41:12 +01:00
|
|
|
COPY . .
|