39 lines
1.1 KiB
Docker
39 lines
1.1 KiB
Docker
FROM python:latest
|
|
|
|
ENV TZ Euopre/Zurich
|
|
|
|
# RUN echo "deb http://deb.debian.org/debian/ unstable main contrib non-free" >> /etc/apt/sources.list
|
|
# allows the installation of the latest firefox-release (debian is not usually a rolling release)
|
|
RUN apt-get update && apt-get install -y \
|
|
evince \
|
|
# for checking
|
|
xauth \
|
|
#for gui
|
|
# wget tar firefox \
|
|
# for geckodriver
|
|
ghostscript
|
|
# for compression
|
|
|
|
|
|
# Download gecko (firefox) driver for selenium
|
|
# RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-linux64.tar.gz
|
|
# RUN tar -x geckodriver -zf geckodriver-v0.31.0-linux64.tar.gz -O > /usr/bin/geckodriver
|
|
# RUN chmod +x /usr/bin/geckodriver
|
|
# RUN rm geckodriver-v0.31.0-linux64.tar.gz
|
|
|
|
|
|
RUN useradd --create-home --shell /bin/bash --uid 1001 autonews
|
|
# id mapped to local user
|
|
# home directory needed for pip package installation
|
|
RUN mkdir -p /app/auto_news
|
|
RUN chown -R autonews:autonews /app
|
|
USER autonews
|
|
RUN export PATH=/home/autonews/.local/bin:$PATH
|
|
|
|
|
|
COPY app /app/auto_news
|
|
WORKDIR /app/auto_news
|
|
RUN python3 -m pip install -r requirements.txt
|
|
|
|
ENTRYPOINT ["python3", "runner.py"]
|