A docker image for arm architecture with ubuntu 18:04, python 3.6, selenium, vim and cron
1.9K
Dockerfile :
FROM ddebeul/arm_selenium_standalone
ARG USER=seluser
USER root
RUN apt-get update
-- Timezone settings
ENV TZ "Europe/Brussels"
RUN echo "${TZ}" > /etc/timezone
-- Install cron
RUN apt-get install cron
-- Install vim
RUN apt-get install -y vim
-- Install pip & some packages
RUN apt-get install -y python3-pip \
&& python3 -m pip install selenium \
&& pip3 install phantomjs-binary
RUN chmod 777 /usr/local/lib/python3.6/dist-packages/phantomjs_bin/bin/linux/phantomjs
-- Use the user
USER seluser
WORKDIR /home/${USER}
CMD sleep infinity
Content type
Image
Digest
Size
547.7 MB
Last updated
about 6 years ago
docker pull ddebeul/python3