Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MemoryCollection authored Nov 21, 2024
1 parent e83422e commit a079cae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ RUN apt-get -yqq update && \
apt-get -yqq install --no-install-recommends \
curl unzip gnupg wget libglib2.0-0 libx11-6 libnss3 \
libgdk-pixbuf2.0-0 libx11-xcb1 libxcomposite1 libxrandr2 \
libasound2 libatk-bridge2.0-0 libatk1.0-0 libcups2 libdrm2 && \
libasound2 libatk-bridge2.0-0 libatk1.0-0 libcups2 libdrm2 \
fonts-liberation libappindicator3-1 libnspr4 libnss3 libxss1 \
libgbm1 && \
rm -rf /var/lib/apt/lists/*

# Install Chrome WebDriver
Expand All @@ -31,7 +33,7 @@ WORKDIR /app
COPY app /app

# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt && pip install --no-cache-dir selenium

# Set container to idle on start (or modify to start your application)
CMD ["tail", "-f", "/dev/null"]

0 comments on commit a079cae

Please # to comment.