Skip to content

Commit

Permalink
[fix] update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
uommou committed Mar 21, 2024
1 parent cc9a6a8 commit 9c9e76d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ COPY . .
# Install any needed packages specified in package.json
RUN npm install

# Install Chromium for Puppeteer
RUN apt-get update && apt-get install -y chromium

# Set Puppeteer to use Chromium from the installed location
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser

# Make port 8080 available to the world outside this container
EXPOSE 8080

Expand Down

0 comments on commit 9c9e76d

Please sign in to comment.