Skip to content

Commit

Permalink
Add tcsh to containers (#6)
Browse files Browse the repository at this point in the history
* Add tcsh to frontend

* Add tcsh to node and master containers also

* Fix bug in CI

* Fix typo

* Update docker CI
  • Loading branch information
christopherwharrop-noaa authored Nov 14, 2024
1 parent 4c68864 commit 0c65b85
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: docker run hello-world
-
name: Install AWS CLI
run: sudo apt install -y awscli
run: sudo apt-get install -y --no-install-recommends awscli
-
name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
uses: actions/checkout@v4
-
name: Install AWS CLI
run: sudo apt install -y awscli
run: sudo apt-get install -y --no-install-recommends awscli
-
name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
3 changes: 2 additions & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ RUN apt-get -y update \
python3-pip \
python3-setuptools \
subversion \
tcl-dev \
tcl-dev \
tcsh \
unzip \
zstd \
&& pip3 install boto3 \
Expand Down
3 changes: 2 additions & 1 deletion master/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ RUN <<EOF
python3-pip \
python3-setuptools \
subversion \
tcl-dev \
tcl-dev \
tcsh \
unzip \
zstd
rm -rf /var/lib/apt/lists/*
Expand Down
3 changes: 2 additions & 1 deletion node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ RUN <<EOF
python3-pip \
python3-setuptools \
subversion \
tcl-dev \
tcl-dev \
tcsh \
unzip \
zstd
rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 0c65b85

Please sign in to comment.