Add google chrome to dockerfile
This commit is contained in:
parent
c9eb3efff0
commit
9e7ee99cf2
|
@ -4,6 +4,13 @@ WORKDIR /plane-notify
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
# Set the Chrome repo.
|
||||||
|
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
||||||
|
&& echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list
|
||||||
|
|
||||||
|
# Install Chrome.
|
||||||
|
RUN apt-get update && apt-get -y install google-chrome-stable
|
||||||
|
|
||||||
# Add pipenv
|
# Add pipenv
|
||||||
RUN pip install pipenv==2021.5.29
|
RUN pip install pipenv==2021.5.29
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
version: "3.9"
|
version: "3.9"
|
||||||
services:
|
services:
|
||||||
plane-notify:
|
plane-notify:
|
||||||
|
platform: linux/amd64
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
volumes:
|
volumes:
|
||||||
|
|
Loading…
Reference in New Issue