We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33b07ff commit d8fd2bcCopy full SHA for d8fd2bc
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM fedora:latest as base
+FROM almalinux:10 as base
2
3
ENV LANG C.UTF-8
4
ENV LC_ALL C.UTF-8
@@ -7,11 +7,11 @@ ENV PYTHONFAULTHANDLER 1
7
8
FROM base as runtime
9
10
-RUN dnf install -y python3 python3-devel python3-pip poetry cmake gcc-c++ boost-devel git graphviz-devel && dnf clean all
+RUN dnf install -y epel-release && dnf install -y python3 python3-devel python3-pip python3-poetry-core cmake gcc-c++ boost-devel git graphviz-devel && dnf clean all
11
COPY pyproject.toml poetry.lock ./
12
ENV POETRY_VIRTUALENVS_IN_PROJECT 1
13
ENV POETRY_NO_INTERACTION 1
14
-RUN poetry install --no-root
+RUN pip install .
15
ENV PATH="/.venv/bin:${PATH}"
16
17
FROM runtime as app
0 commit comments