Skip to content

Commit d8fd2bc

Browse files
committed
Switch to dlplan without state space generator
Also update all dependencies.
1 parent 33b07ff commit d8fd2bc

File tree

3 files changed

+575
-299
lines changed

3 files changed

+575
-299
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM fedora:latest as base
1+
FROM almalinux:10 as base
22

33
ENV LANG C.UTF-8
44
ENV LC_ALL C.UTF-8
@@ -7,11 +7,11 @@ ENV PYTHONFAULTHANDLER 1
77

88
FROM base as runtime
99

10-
RUN dnf install -y python3 python3-devel python3-pip poetry cmake gcc-c++ boost-devel git graphviz-devel && dnf clean all
10+
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
1111
COPY pyproject.toml poetry.lock ./
1212
ENV POETRY_VIRTUALENVS_IN_PROJECT 1
1313
ENV POETRY_NO_INTERACTION 1
14-
RUN poetry install --no-root
14+
RUN pip install .
1515
ENV PATH="/.venv/bin:${PATH}"
1616

1717
FROM runtime as app

0 commit comments

Comments
 (0)