Skip to content
Snippets Groups Projects
Verified Commit fe34d184 authored by Ole Binder's avatar Ole Binder
Browse files

Fix: add ncat to Dockerfile, closes #39

parent 72e91496
No related branches found
No related tags found
1 merge request!2Merge: Fix issue #39 with ncat in Dockerfile
Pipeline #3052 failed
......@@ -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 faild (#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