Skip to content

Commit

Permalink
Enable docker cache of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
intermittentnrg committed Oct 17, 2023
1 parent 03be161 commit 41ab012
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ ENV TINI_VERSION v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini

COPY . /app
COPY setup.py README.rst /app/
WORKDIR /app
RUN python3 setup.py develop

COPY . /app

ENTRYPOINT ["/tini", "--", "xvfb-run", "python", "-c", "from grafanimate.commands import run; run()"]

0 comments on commit 41ab012

Please sign in to comment.