Files
hsmod/docker/Dockerfile
T
2026-03-12 01:17:55 +03:00

20 lines
403 B
Docker

FROM ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
software-properties-common \
&& add-apt-repository universe \
&& apt-get update && apt-get install -y \
build-essential \
cmake \
curl \
libev-dev \
libjson-c-dev \
libcouchbase-dev \
python \
python-pip \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace