Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://medium.com/@albertazzir/blazing-fast-python-docker-builds-with-poetry-a78a66f5aed0

# The builder image, used to build the virtual environment
FROM python:3.11-buster as builder
FROM python:3.11-buster AS builder

RUN pip install poetry==2.0.0

Expand All @@ -22,10 +22,10 @@ COPY pyproject.toml poetry.lock ./
# Because poetry will complain if a README.md is not found, we create a dummy one.
RUN touch README.md

RUN poetry install --without development --extras=fit --no-root && rm -rf $POETRY_CACHE_DIR
RUN poetry install --without development --no-root && rm -rf $POETRY_CACHE_DIR

# The runtime image, used to run the code
FROM python:3.11-slim-buster as runtime
FROM python:3.11-slim-buster AS runtime

LABEL image.author.name="Judith Bernett"
LABEL image.author.email="[email protected]"
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
# the built documents.
#
# The short X.Y version.
version = "1.1.2"
version = "1.1.3"
# The full version, including alpha/beta/rc tags.
release = "1.1.2"
release = "1.1.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
Loading
Loading