Skip to content

Commit

Permalink
Update run command in Dockerfile (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Jul 25, 2023
1 parent ff894f4 commit e2e16c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ FROM base AS builder
COPY . .
RUN apt-get update && \
apt-get install -y chromium traceroute && \
chmod 755 /usr/bin/chromium && \
rm -rf /var/lib/apt/lists/*
RUN npm install --force
EXPOSE 8888
CMD ["npm", "start"]
ENV CHROME_PATH='/usr/bin/chromium'
CMD ["npm", "run", "serve"]

0 comments on commit e2e16c9

Please sign in to comment.