redis/Dockerfile

14 lines
355 B
Docker
Raw Permalink Normal View History

2020-04-18 00:36:52 +03:00
FROM ubuntu:18.04
2019-06-28 14:12:45 +03:00
RUN apt-get update \
&& apt-get install -y ca-certificates \
curl \
git \
2020-04-18 00:36:52 +03:00
make
2019-06-28 14:12:45 +03:00
2020-04-18 00:36:52 +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-06-28 14:12:45 +03:00
VOLUME /code
WORKDIR /code
CMD make wasm