Skip to content
Snippets Groups Projects
Commit 8fca49cb authored by David Trattnig's avatar David Trattnig
Browse files

Merge branch 'fix-healthcheck' into 'main'

Merge: Fix issue #39 with ncat in Dockerfile

See merge request !2
parents 72e91496 be3bd43e
No related branches found
No related tags found
1 merge request!2Merge: Fix issue #39 with ncat in Dockerfile
Pipeline #3054 passed
......@@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- ...
- Fix an issue where the docker compose healthcheck failed (#39)
### Security
......
......@@ -15,7 +15,8 @@ ENV POETRY_CACHE_DIR=/opt/.cache
RUN apt-get update && apt-get -y install \
apt-utils \
build-essential \
pip
pip \
ncat
# Setup Poetry
RUN python3 -m venv $POETRY_VENV \
......@@ -37,8 +38,8 @@ RUN poetry install --no-interaction --no-ansi
# Update Permissions
RUN groupadd --gid ${AURA_GID} aura && \
useradd --gid ${AURA_GID} --no-user-group --uid ${AURA_UID} --home-dir /srv --no-create-home aura && \
chown -R ${AURA_UID}:${AURA_GID} /srv /etc/aura
useradd --gid ${AURA_GID} --no-user-group --uid ${AURA_UID} --home-dir /srv --no-create-home aura && \
chown -R ${AURA_UID}:${AURA_GID} /srv /etc/aura
USER aura
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment