sqlite/Dockerfile
Anatolios Laskaris 8a97f5ca7b
chore(e2e): Update e2e (#17)
* Update e2e

* Fix

* Bring back docker-compose
2023-04-04 19:22:15 +03:00

18 lines
307 B
Docker

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