Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNEMONIC-780: Remove a redundant env setting from dockerfile #329

Merged
merged 2 commits into from
Jul 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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 && \
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
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 tree

RUN apt-get install -y libndctl-dev libpmem-dev libpmemobj-dev libmemkind-dev

Expand All @@ -37,8 +37,6 @@ RUN git clone https://github.com/redis/hiredis.git && \

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

ENV PATH="/root/.cargo/bin:${PATH}"

RUN cd /ws

ENV MNEMONIC_HOME /ws/mnemonic
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Loading