-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Make the Dockerfile a tiny bit cache friendlier
Still not great as the whole installation happens after copying but at least copying is not the first thing we do anymore. Related #124
- Loading branch information
Showing
1 changed file
with
24 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
FROM phusion/baseimage:jammy-1.0.3 | ||
|
||
WORKDIR /opt/app | ||
|
||
COPY . /opt/app | ||
|
||
WORKDIR /opt/app/fact_extractor | ||
|
||
ARG USER=root | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN install_clean python3.11 python3.11-dev python3.11-venv gcc | ||
|
||
RUN python3.11 -m venv venv | ||
|
||
RUN . venv/bin/activate && install/pre_install.sh | ||
|
||
RUN . venv/bin/activate && venv/bin/python3.11 install.py | ||
|
||
ENV PATH=/opt/app/fact_extractor/venv/bin:$PATH | ||
|
||
ENTRYPOINT ["./docker_extraction.py"] | ||
RUN --mount=type=cache,target=/var/cache/apt \ | ||
apt update && apt install -y \ | ||
python3.11 \ | ||
python3.11-dev \ | ||
python3.11-venv \ | ||
gcc | ||
|
||
RUN python3.11 -m venv /venv | ||
ENV PATH=/venv/bin:$PATH \ | ||
VIRTUAL_ENV=/venv \ | ||
PYTHONPATH=/app/fact_extractor | ||
|
||
ADD ./fact_extractor/install/pre_install.sh /app/fact_extractor/install/pre_install.sh | ||
RUN --mount=type=cache,target=/var/cache/apt \ | ||
--mount=type=cache,target=/root/.cache/pip \ | ||
/app/fact_extractor/install/pre_install.sh | ||
|
||
ADD . /app | ||
RUN --mount=type=cache,target=/var/cache/apt \ | ||
--mount=type=cache,target=/root/.cache/pip \ | ||
/app/fact_extractor/install.py | ||
|
||
|
||
ENTRYPOINT ["/app/fact_extractor/docker_extraction.py"] |