mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-23 07:48:04 +01:00
This commit is contained in:
parent
20a9c38abb
commit
d94c594d4b
1 changed files with 0 additions and 12 deletions
|
@ -1,12 +0,0 @@
|
||||||
FROM debian:bullseye AS downloader
|
|
||||||
WORKDIR /app
|
|
||||||
RUN apt-get update && apt-get install -y wget
|
|
||||||
ARG GECKODRIVER_VERSION="v0.30.0"
|
|
||||||
ARG GECKODRIVER_FILENAME="geckodriver-$GECKODRIVER_VERSION-linux64"
|
|
||||||
RUN wget -q https://github.com/mozilla/geckodriver/releases/download/v0.30.0/$GECKODRIVER_FILENAME.tar.gz && tar xvf $GECKODRIVER_FILENAME.tar.gz && rm $GECKODRIVER_FILENAME.tar.gz
|
|
||||||
|
|
||||||
FROM python:3.10-slim-bullseye as final
|
|
||||||
RUN apt-get update && apt-get install -y firefox-esr
|
|
||||||
COPY --from=downloader /app/geckodriver /usr/local/bin/geckodriver
|
|
||||||
RUN pip install ofx-processor==3.2.1
|
|
||||||
CMD ["ynab", "lcl", "--download"]
|
|
Loading…
Reference in a new issue