-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
65 lines (51 loc) · 1.5 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Use the official Python image from Docker Hub
FROM python:3.11
# Set the working directory inside the container
WORKDIR /app
# Install dependencies
RUN apt-get update && apt-get install -y \
sudo \
wget \
gettext
# Playwright system dependencies for Linux
RUN apt-get update && apt-get install -y --no-install-recommends \
libglib2.0-0 \
libnss3 \
libnspr4 \
libatk1.0-0 \
libatk-bridge2.0-0 \
libcups2 \
libdrm2 \
libdbus-1-3 \
libxcb1 \
libxkbcommon0 \
libx11-6 \
libxcomposite1 \
libxdamage1 \
libxext6 \
libxfixes3 \
libxrandr2 \
libgbm1 \
libpango-1.0-0 \
libcairo2 \
libasound2 \
libatspi2.0-0 \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
COPY ./requirements.txt .
RUN pip install -r requirements.txt
RUN playwright install
RUN crawl4ai-setup
# Download Python source (Needed for internationalization)
RUN wget https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tgz \
&& tar xzf Python-3.11.0.tgz \
&& mv Python-3.11.0 /usr/local/src/ \
&& rm Python-3.11.0.tgz
# Copy the rest of the application code into the container
COPY . .
# Compile the .po file into a .mo file
#RUN ls -l /usr/local/src/Python-3.11.0/Tools/i18n/msgfmt.py
RUN chmod +x /usr/local/src/Python-3.11.0/Tools/i18n/msgfmt.py
RUN /usr/local/src/Python-3.11.0/Tools/i18n/msgfmt.py /app/locale/de/LC_MESSAGES/base.po /app/locale/de/LC_MESSAGES/base
# Expose the port that Streamlit will run on
EXPOSE 8501