Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

Commit 1d01cb5

Browse files
committed
MNEMONIC-757: Dev docker base image ubuntu version outdated and causing build error
1 parent f620f57 commit 1d01cb5

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

docker/docker-Ubuntu/Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
# limitations under the License.
1616
#
1717

18-
FROM ubuntu:21.10
18+
FROM ubuntu:22.04
1919
LABEL maintainer="Yanhui Zhao (yanhui.zhao@outlook.com)"
2020

2121
RUN apt-get -y update && apt-get install -y software-properties-common && add-apt-repository ppa:openjdk-r/ppa && apt-get -y update && \
2222
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
2323

24-
RUN apt-get install -y libndctl-dev libpmem-dev libvmem-dev libpmemobj-dev libmemkind-dev
24+
RUN apt-get install -y libndctl-dev libpmem-dev libpmemobj-dev libmemkind-dev
2525

2626
RUN apt-get clean
2727

@@ -30,6 +30,11 @@ ENV PATH $JAVA_HOME/bin:$PATH
3030

3131
WORKDIR /ws
3232

33+
RUN git clone https://github.com/pmem/vmem && \
34+
cd vmem && make && make install
35+
36+
RUN cd /ws
37+
3338
RUN git clone https://github.com/redis/hiredis.git && \
3439
cd hiredis && make && make install
3540

0 commit comments

Comments
 (0)