Skip to content

Commit

Permalink
chore: Add git and build-essential to the Meltano Docker image (m…
Browse files Browse the repository at this point in the history
…eltano#6598)

* chore: Add git to Meltano Docker image

* chore: Add build-essential to Meltano Docker image
  • Loading branch information
WillDaSilva committed Aug 9, 2022
1 parent cdddf54 commit f89fc4d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker/meltano/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ ARG WORKDIR="/project"

ENV PIP_NO_CACHE_DIR=1

RUN mkdir "${WORKDIR}"
RUN mkdir "${WORKDIR}" && \
apt-get update && \
apt-get install -y build-essential git && \
rm -rf /var/cache/apt/archives /var/lib/apt/lists/*

WORKDIR "${WORKDIR}"

Expand Down

0 comments on commit f89fc4d

Please sign in to comment.