sqlite/Dockerfile

17 lines
422 B
Docker
Raw Normal View History

2020-04-17 19:19:02 +03:00
FROM ubuntu:18.04
2019-07-19 15:12:49 +03:00
RUN apt-get update \
&& apt-get install -y ca-certificates \
curl \
git \
make \
cargo
2019-07-19 15:12:49 +03:00
RUN curl -L https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-11/wasi-sdk-11.0-linux.tar.gz | tar xz --strip-components=1 -C /
2019-07-19 15:12:49 +03:00
2020-11-09 04:39:38 +03:00
RUN cargo install fcli --version 0.1.12
2019-07-19 15:12:49 +03:00
VOLUME /code
WORKDIR /code
CMD make