You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
getDiscography/Dockerfile

32 lines
977 B

FROM python:3.6.15-slim-bullseye
RUN apt update && apt upgrade -y
RUN apt install firefox-esr -y
RUN apt install curl python3-pip -y
ADD . /code
WORKDIR /code
# Geckodriver Install for Selenium
# RUN bash geckodriver-install.sh
#RUN json=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest)
#RUN url=$(echo "$json" | jq -r '.assets[].browser_download_url | select(contains("linux64") and endswith("gz"))')
ARG url="https://github.com/mozilla/geckodriver/releases/download/v0.33.0/geckodriver-v0.33.0-linux64.tar.gz"
RUN curl -s -L "$url" | tar -xz
RUN chmod +x geckodriver
RUN mv geckodriver /usr/local/bin
RUN export PATH=$PATH:/usr/local/bin/geckodriver
RUN pip3 install -r requirements.txt
ENV FLASK_APP=app
## Set user and group
#ARG user=app
#ARG group=app
#ARG uid=1000
#ARG gid=1000
#RUN groupadd -g ${gid} ${group}
#RUN useradd -u ${uid} -g ${group} -s /bin/sh -m ${user}
#
## Switch to user
#USER ${uid}:${gid}
CMD ["python3","-u","app.py"]