Skip to content

Commit a6380cf

Browse files
Replacing deprecated "apt-get" with "apt"
1 parent 7841354 commit a6380cf

12 files changed

+32
-32
lines changed

.github/workflows/bsts_local.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828

2929
- name: Install Perl # for BioNetGen
3030
run: |
31-
sudo apt-get update -y
32-
sudo apt-get install -y --no-install-recommends perl
31+
sudo apt update -y
32+
sudo apt install -y --no-install-recommends perl
3333
3434
- name: Install XPP
3535
run: |
36-
sudo apt-get install -y --no-install-recommends xppaut
36+
sudo apt install -y --no-install-recommends xppaut
3737
3838
- name: Install Go (for Singularity)
3939
uses: actions/setup-go@v3
@@ -47,7 +47,7 @@ jobs:
4747
OS: linux
4848
ARCH: amd64
4949
run: |
50-
sudo apt-get install -y --no-install-recommends \
50+
sudo apt install -y --no-install-recommends \
5151
build-essential \
5252
libseccomp-dev \
5353
pkg-config \

.github/workflows/ci_cd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
- uses: actions/checkout@v4
108108

109109
- name: Install hdf5 tools needed for testing
110-
run: sudo apt-get -y update && sudo apt-get -y install hdf5-tools
110+
run: sudo apt -y update && sudo apt -y install hdf5-tools
111111

112112
- name: Set up Python
113113
uses: actions/setup-python@v5

docker/build/Dockerfile-admin-dev

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ ENV PATH "${JAVA_HOME}/bin:${PATH}"
1616
COPY --from=jre-build /javaruntime $JAVA_HOME
1717

1818
# now we have Java 17
19-
RUN apt-get -y update && \
20-
apt-get install -y curl dnsutils apt-utils libfreetype6 fontconfig fonts-dejavu openssh-client && \
19+
RUN apt -y update && \
20+
apt install -y curl dnsutils apt-utils libfreetype6 fontconfig fonts-dejavu openssh-client && \
2121
mkdir -p /usr/local/app/lib
2222

23-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
23+
RUN DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends tzdata
2424
RUN unlink /etc/localtime || true
2525
RUN ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
2626

docker/build/Dockerfile-api-dev

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ COPY --from=jre-build /javaruntime $JAVA_HOME
1717

1818
# now we have Java 17 and Python 3.9
1919

20-
RUN apt-get -y update && \
21-
apt-get install -y --no-install-recommends curl dnsutils apt-utils libfreetype6 fontconfig fonts-dejavu && \
20+
RUN apt -y update && \
21+
apt install -y --no-install-recommends curl dnsutils apt-utils libfreetype6 fontconfig fonts-dejavu && \
2222
mkdir -p /usr/local/app/lib
2323

24-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
24+
RUN DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends tzdata
2525
RUN unlink /etc/localtime || true
2626
RUN ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
2727

docker/build/Dockerfile-batch-dev

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
FROM ghcr.io/virtualcell/vcell-solvers:v0.8.2
22

3-
RUN apt-get -y update && \
4-
apt-get install -y curl && \
5-
apt-get install -y wget gdebi-core apt-utils libfreetype6 fontconfig fonts-dejavu && \
3+
RUN apt -y update && \
4+
apt install -y curl && \
5+
apt install -y wget gdebi-core apt-utils libfreetype6 fontconfig fonts-dejavu && \
66
pip3 install thrift
77

8-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
8+
RUN DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends tzdata
99
RUN unlink /etc/localtime || true
1010
RUN ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
1111

docker/build/Dockerfile-clientgen-dev

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ ENV PATH "${JAVA_HOME}/bin:${PATH}"
1616
COPY --from=jre-build /javaruntime $JAVA_HOME
1717

1818
RUN mkdir -p /usr/local/app && \
19-
apt-get -y update && \
20-
apt-get -y install wget apt-utils libfreetype6 fontconfig fonts-dejavu
19+
apt -y update && \
20+
apt -y install wget apt-utils libfreetype6 fontconfig fonts-dejavu
2121

2222
RUN mkdir /installer && cd /installer && \
2323
wget --quiet -O install4j_unix_10_0_5.tar.gz \

docker/build/Dockerfile-data-dev

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ COPY --from=jre-build /javaruntime $JAVA_HOME
1717

1818
# now we have Java 17 and Python 3.9
1919

20-
RUN apt-get -y update && \
21-
apt-get -y install openssh-client screen apt-utils libfreetype6 fontconfig fonts-dejavu && \
20+
RUN apt -y update && \
21+
apt -y install openssh-client screen apt-utils libfreetype6 fontconfig fonts-dejavu && \
2222
mkdir -p /usr/local/app
2323

2424
RUN python3 -m pip install poetry && poetry config cache-dir "/poetry/.cache"
2525
ENV PATH="/root/.poetry/bin:/root/.local/bin:$PATH"
2626

27-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
27+
RUN DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends tzdata
2828
RUN unlink /etc/localtime || true
2929
RUN ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
3030

docker/build/Dockerfile-db-dev

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ ENV PATH "${JAVA_HOME}/bin:${PATH}"
1616
COPY --from=jre-build /javaruntime $JAVA_HOME
1717

1818
RUN mkdir -p /usr/local/app && \
19-
apt-get -y update && \
20-
apt-get -y install screen apt-utils libfreetype6 fontconfig fonts-dejavu
19+
apt -y update && \
20+
apt -y install screen apt-utils libfreetype6 fontconfig fonts-dejavu
2121

22-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
22+
RUN DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends tzdata
2323
RUN unlink /etc/localtime || true
2424
RUN ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
2525

docker/build/Dockerfile-sched-dev

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ COPY --from=jre-build /javaruntime $JAVA_HOME
1717

1818

1919
RUN mkdir -p /usr/local/app && \
20-
apt-get -y update && \
21-
apt-get -y install openssh-client curl screen apt-utils libfreetype6 fontconfig fonts-dejavu
20+
apt -y update && \
21+
apt -y install openssh-client curl screen apt-utils libfreetype6 fontconfig fonts-dejavu
2222

23-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
23+
RUN DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends tzdata
2424
RUN unlink /etc/localtime || true
2525
RUN ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
2626

docker/build/Dockerfile-submit-dev

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ ENV PATH "${JAVA_HOME}/bin:${PATH}"
1616
COPY --from=jre-build /javaruntime $JAVA_HOME
1717

1818
RUN mkdir -p /usr/local/app && \
19-
apt-get -y update && \
20-
apt-get -y install openssh-client screen apt-utils libfreetype6 fontconfig fonts-dejavu
19+
apt -y update && \
20+
apt -y install openssh-client screen apt-utils libfreetype6 fontconfig fonts-dejavu
2121

22-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
22+
RUN DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends tzdata
2323
RUN unlink /etc/localtime || true
2424
RUN ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
2525

docker/swarm/README_DockerSwarmConfig.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ install jq (utility for json processing)
2525
install poetry (for building/installing vcell-admin)
2626

2727
```bash
28-
sudo apt-get install -y jq
29-
sudo apt-get install -y python3-poetry
28+
sudo apt install -y jq
29+
sudo apt install -y python3-poetry
3030
```
3131

3232
## Install singularity [more info linux](https://singularity.lbl.gov/install-linux)

pythonCopasiOpt/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.10-slim-bullseye
22

33
RUN apt -y update && apt -y upgrade && \
4-
apt-get install -y curl
4+
apt install -y curl
55

66
RUN mkdir -p /usr/local/app/vcell/installDir && \
77
mkdir -p /usr/local/app/vcell/installDir/python/vcell_opt

0 commit comments

Comments
 (0)