Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-pie committed Jun 19, 2024
1 parent 8ae7566 commit b4e998c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dev-project/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
### Primary container with PipelineWise CLI
pipelinewise:
image: python:3.8-slim-buster
image: ubuntu:20.04
container_name: pipelinewise_dev
working_dir: /opt/pipelinewise
entrypoint: /opt/pipelinewise/dev-project/entrypoint.sh
Expand Down
20 changes: 13 additions & 7 deletions dev-project/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
set -e

apt update

DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata

apt install -y --no-install-recommends \
wget \
gnupg \
Expand All @@ -12,18 +15,21 @@ apt install -y --no-install-recommends \
libaio1 \
mariadb-client \
mbuffer \
postgresql-client
postgresql-client \
python3 \
python3-pip \
python3-venv

apt upgrade -y
# rm -rf /var/lib/apt/lists/* \

# Do a bunch of Mongo things
wget -q https://downloads.mongodb.com/compass/mongodb-mongosh_2.2.6_arm64.deb
apt install ./mongodb-mongosh_2.2.6_arm64.deb
rm -f mongodb-mongosh_2.2.6_arm64.deb
wget -q https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2004-arm64-100.9.4.deb
apt install ./mongodb-database-tools-ubuntu2004-arm64-100.9.4.deb
rm -f mongodb-database-tools-ubuntu2004-arm64-100.9.4.deb
wget -q --no-check-certificate https://downloads.mongodb.com/compass/mongodb-mongosh_2.2.9_arm64.deb
apt install ./mongodb-mongosh_2.2.9_arm64.deb
rm -f mongodb-mongosh_2.2.9_arm64.deb
wget -q --no-check-certificate https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2004-arm64-100.9.5.deb
apt install ./mongodb-database-tools-ubuntu2004-arm64-100.9.5.deb
rm -f mongodb-database-tools-ubuntu2004-arm64-100.9.5.deb
dev-project/mongo/initiate-replica-set.sh

# Install Oracle Instant Client required for tap-oracle
Expand Down

0 comments on commit b4e998c

Please sign in to comment.