Compare commits
No commits in common. "b293dff1df64c5b9b880e5397fea11d0b384c700" and "658a1e3c439bbe4ba1adf29ed4b95045474efe22" have entirely different histories.
b293dff1df
...
658a1e3c43
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.12.5-slim
|
FROM python:3.12.3-slim
|
||||||
|
|
||||||
COPY requirements.txt /tmp
|
COPY requirements.txt /tmp
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ RUN set -eux; \
|
||||||
find . -type f -name '*.py[c0]' -delete; \
|
find . -type f -name '*.py[c0]' -delete; \
|
||||||
find . -type d -name "__pycache__" -delete;
|
find . -type d -name "__pycache__" -delete;
|
||||||
|
|
||||||
FROM python:3.12.5-slim AS build_env
|
FROM python:3.12.3-slim AS build_env
|
||||||
ARG BEANCOUNT_VERSION
|
ARG BEANCOUNT_VERSION
|
||||||
ENV PATH "/app/bin:$PATH"
|
ENV PATH "/app/bin:$PATH"
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ RUN set -eux; \
|
||||||
find /app -name __pycache__ -exec rm -rf -v {} + \;; \
|
find /app -name __pycache__ -exec rm -rf -v {} + \;; \
|
||||||
rm -r /app/share;
|
rm -r /app/share;
|
||||||
|
|
||||||
FROM python:3.12.5-slim
|
FROM python:3.12.3-slim
|
||||||
COPY --from=build_env /app /app
|
COPY --from=build_env /app /app
|
||||||
|
|
||||||
# Default fava port number
|
# Default fava port number
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue