This is an automated email from the ASF dual-hosted git repository.
garyw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git
The following commit(s) were added to refs/heads/master by this push:
new 75b4283 MNEMONIC-786: The option -y is not nessesary for apt-get
update.
75b4283 is described below
commit 75b4283b3217720c8697fb0be2b9251bd379e4d0
Author: Katarina <[email protected]>
AuthorDate: Tue Jun 20 02:40:45 2023 +0000
MNEMONIC-786: The option -y is not nessesary for apt-get update.
---
.devcontainer/Dockerfile | 2 +-
.vscode/settings.json | 3 ++-
docker/docker-Ubuntu/Dockerfile | 2 +-
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 4c0e181..d7e539d 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -18,7 +18,7 @@
FROM ubuntu:22.04
LABEL maintainer="Yanhui Zhao ([email protected])"
-RUN apt-get -y update && apt-get install -y software-properties-common &&
add-apt-repository ppa:openjdk-r/ppa && apt-get -y update && \
+RUN apt-get update && apt-get install -y software-properties-common &&
add-apt-repository ppa:openjdk-r/ppa && apt-get -y update && \
apt-get install -y openjdk-17-jdk cmake check git pkg-config autoconf man
build-essential gcc g++ uuid-dev pandoc devscripts flex doxygen maven
RUN apt-get install -y libndctl-dev libpmem-dev libpmemobj-dev libmemkind-dev
diff --git a/.vscode/settings.json b/.vscode/settings.json
index b6fe0e3..279e467 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -19,5 +19,6 @@
"atlascode.enableCurlLogging": false,
"atlascode.jira.showCreateIssueProblems": false,
"atlascode.enableCharles": false,
- "atlascode.bitbucket.enabled": false
+ "atlascode.bitbucket.enabled": false,
+ "java.compile.nullAnalysis.mode": "automatic"
}
\ No newline at end of file
diff --git a/docker/docker-Ubuntu/Dockerfile b/docker/docker-Ubuntu/Dockerfile
index e63b4b6..6b5d6c2 100644
--- a/docker/docker-Ubuntu/Dockerfile
+++ b/docker/docker-Ubuntu/Dockerfile
@@ -18,7 +18,7 @@
FROM ubuntu:22.04
LABEL maintainer="Yanhui Zhao ([email protected])"
-RUN apt-get -y update && apt-get install -y software-properties-common &&
add-apt-repository ppa:openjdk-r/ppa && apt-get -y update && \
+RUN apt-get update && apt-get install -y software-properties-common &&
add-apt-repository ppa:openjdk-r/ppa && apt-get -y update && \
apt-get install -y openjdk-17-jdk cmake check git pkg-config autoconf man
build-essential gcc g++ uuid-dev pandoc devscripts flex doxygen maven
RUN apt-get install -y libndctl-dev libpmem-dev libpmemobj-dev libmemkind-dev