sqlite/Dockerfile

15 lines
385 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 \
2019-08-14 01:20:56 +03:00
make \
libtinfo5
2019-07-19 15:12:49 +03:00
2020-04-17 19:19:02 +03:00
RUN curl -L https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-10/wasi-sdk-10.0-linux.tar.gz | tar xz --strip-components=1 -C /
2019-07-19 15:12:49 +03:00
VOLUME /code
WORKDIR /code
CMD make