Skip to content

Commit

Permalink
adding missing docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Neagu committed Nov 30, 2021
1 parent 9d23b22 commit 6b23384
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ARG COMMIT_SHA="a2413944443f03074866d23172b32249140bd288"
ARG CLONE_DIR="/opsarc"
ARG PYTHON_VERSION="3.8.10"
ARG DEBIAN_FRONTEND=noninteractive
ARG DOCKER_COMPOSE_VERSION="1.29.2"

#Set of all dependencies needed for pyenv to work on Ubuntu
RUN apt-get update && \
Expand Down Expand Up @@ -53,7 +54,7 @@ RUN git clone -n ${REPO_NAME} ${CLONE_DIR} && \
git checkout -b ${BRANCH_NAME} ${COMMIT_SHA} && \
# install ooil and requirements
cd ${CLONE_DIR}/packages/service-integration && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir --upgrade pip docker-compose==${DOCKER_COMPOSE_VERSION} && \
pip install --no-cache-dir -r requirements/prod.txt && \
pip install --no-cache-dir . && \
cd / && \
Expand Down

0 comments on commit 6b23384

Please sign in to comment.