Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM debian:bullseye-slim

ENV INSTALL_DIR /flarestack

RUN apt-get update && apt-get dist-upgrade -y
RUN apt-get install python3 python3-pip -y

RUN python3 -m pip install poetry

ADD . ${INSTALL_DIR}

RUN cd ${INSTALL_DIR} && poetry install

# this still fails due to lack fo sphinx-build executable
# RUN cd ${INSTALL_DIR} && poetry install --with docs
# RUN cd ${INSTALL_DIR} && sphinx-build -b html docs/source/ docs/build/html

# 'sh -c' allows variable expansion
CMD ["sh", "-c", "cd ${INSTALL_DIR} && poetry run python3 -m unittest discover"]