sqlite/Dockerfile

14 lines
350 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 \
2020-04-17 23:19:01 +03:00
make
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