sqlite/Dockerfile

18 lines
307 B
Docker
Raw Normal View History

FROM ubuntu:20.04
RUN apt update \
&& DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata \
&& apt install -y ca-certificates \
curl \
git \
make \
pkg-config \
libtinfo6 \
cargo
RUN cargo install marine
VOLUME /code
WORKDIR /code
ENTRYPOINT /code/entrypoint.sh