40 lines
1.2 KiB
Docker
40 lines
1.2 KiB
Docker
# Use an official Python runtime as a parent image
|
|
FROM python:3.10-slim
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy the current directory contents into the container at /usr/src/app
|
|
COPY . .
|
|
|
|
# Install any needed packages specified in requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Install dependencies for Chrome and ChromeDriver
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
wget \
|
|
xvfb \
|
|
unzip \
|
|
curl \
|
|
gnupg2 \
|
|
ca-certificates \
|
|
apt-transport-https \
|
|
software-properties-common \
|
|
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
|
&& echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list \
|
|
&& apt-get update \
|
|
&& apt-get install -y google-chrome-stable \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set display port and dbus env to avoid hanging
|
|
ENV DISPLAY=:99
|
|
ENV DBUS_SESSION_BUS_ADDRESS=/dev/null
|
|
|
|
# Make port 80 available to the world outside this container
|
|
EXPOSE 80
|
|
|
|
# Define environment variable
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Run uvicorn
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80", "--workers", "4"] |