Skip to content

Commit

Permalink
Postgres Docker (#6)
Browse files Browse the repository at this point in the history
Update docker to include postgres dependencies
  • Loading branch information
Buried-In-Code authored Nov 25, 2023
1 parent 1eb045e commit 056a096
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY static /app/static
COPY templates /app/templates
COPY pyproject.toml README.md run.py /app/

RUN pip install --no-cache-dir .
RUN pip install --no-cache-dir .[postgres]

ENV XDG_CACHE_HOME /app/cache
RUN mkdir -p $XDG_CACHE_HOME/freyr
Expand Down
2 changes: 1 addition & 1 deletion freyr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from freyr.console import CONSOLE

__version__ = "0.3.0"
__version__ = "0.3.1"


def get_cache_root() -> Path:
Expand Down

0 comments on commit 056a096

Please sign in to comment.