FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-selenium-python/Dockerfile-alpine at main · infologistix/docker-selenium-python · GitHub
infologistix
/
docker-selenium-python
Public
Notifications
You must be signed in to change notification settings
Fork
7
Star
13
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-selenium-python
/
Dockerfile-alpine
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (24 loc) · 638 Bytes
Breadcrumbs
docker-selenium-python
/
Dockerfile-alpine
Copy path
File metadata and controls
28 lines (24 loc) · 638 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ARG ARCH
FROM ${ARCH}alpine:3
LABEL org.label-schema.maintainer="paul.schmidt@infologistix.de"
LABEL org.label-schema.build-date="05.11.2022"
LABEL org.label-schema.schema-version="1.0"
LABEL org.label-schema.version="python3.10"
RUN apk add \
chromium \
python3 \
py3-pip \
py3-numpy \
py3-pandas \
py3-cryptography \
py3-multidict \
py3-yarl \
py3-beautifulsoup4 \
chromium-chromedriver \
&& rm -rf /var/cache/* \
&& mkdir /var/cache/apk
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN rm requirements.txt
COPY examples/ ./examples
Back
|
FazBrowse Home
|
New Git URL