Skip to content

Commit

Permalink
add some image build corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Jul 16, 2024
1 parent f11cd72 commit aa11c7a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ ENV PYTHONUNBUFFERED=1 \
# paths
# this is where our requirements + virtual environment will live
PYSETUP_PATH="/opt/pysetup" \
VENV_PATH="/opt/pysetup/.venv"
VENV_PATH="/opt/pysetup/.venv" \
# set non-interactive in the event tzdata decides to update
DEBIAN_FRONTEND=noninteractive

ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH"

Expand All @@ -39,7 +41,8 @@ RUN apt-get update -y \
build-essential \
libcurl4-gnutls-dev \
gnutls-dev \
libmagic-dev
libmagic-dev \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sSL https://install.python-poetry.org | python -
# copy project requirement files here to ensure they will be cached.
Expand Down
10 changes: 8 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
services:
anilistcmp:
image: ghcr.io/abstractumbra/anilist-comparison:latest
ports:
- "8080:8080"
container_name: "anilistcmp"
restart: "unless-stopped"
networks:
main:

networks:
main:
external:
true

0 comments on commit aa11c7a

Please sign in to comment.