Skip to content

Commit

Permalink
add mariadb and gcc to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsage1 committed Oct 21, 2024
1 parent c3866f8 commit 2386f0e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions apps/openchallenges/edam-etl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ RUN groupadd --gid "$USER_GID" "$USERNAME" \
&& apt-get update -qq -y && export DEBIAN_FRONTEND=noninteractive \
&& apt-get install --no-install-recommends -qq -y \
gosu \
libmariadb-dev \
gcc \
&& apt-get -y autoclean \
&& apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*


WORKDIR ${APP_DIR}
COPY src src/
Expand All @@ -24,7 +27,7 @@ COPY pyproject.toml poetry.lock ./
# See /workspaces/sage-monorepo/tools/devcontainers/sage/.devcontainer/Dockerfile
RUN pip install --no-cache-dir poetry==1.6.1 \
&& poetry config --local virtualenvs.create false \
&& poetry install --with prod --no-root --no-interaction --no-ansi \
&& poetry install --no-root --no-interaction --no-ansi \
&& pip cache purge

WORKDIR /
Expand Down

0 comments on commit 2386f0e

Please sign in to comment.