Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoestner committed Jan 15, 2024
1 parent 157302d commit 98d1544
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
# from where the dockerfile is located.
FROM python:3.8-slim

# Install git
# Install git and libpq-dev, build-essential (needed for psycopg2)
RUN apt-get update && \
apt-get install -y --no-install-recommends git && \
apt-get install -y --no-install-recommends git libpq-dev build-essential && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Install chromium (lighter version of Chrome)
# Install chromium (lighter version of Chrome for seleniumbase)
RUN apt-get update && \
apt-get install -y chromium && \
ln -s /usr/bin/chromium /usr/bin/google-chrome && \
Expand Down

0 comments on commit 98d1544

Please sign in to comment.