Skip to content

Commit

Permalink
ci: switch vanilla.Dockerfile to ubuntu because centos:7 is no longer
Browse files Browse the repository at this point in the history
  • Loading branch information
gmoshkin committed Aug 5, 2024
1 parent e6343e0 commit e1da52b
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions docker/vanilla.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
FROM centos:7
FROM ubuntu:22.04
ARG RUST_VERSION

RUN set -e; \
curl -L https://tarantool.io/UaooCnt/release/2/installer.sh | bash; \
yum -y install gcc git tarantool tarantool-devel; \
yum clean all;
ENV DEBIAN_FRONTEND=noninteractive

RUN apt update && apt install -y curl;

RUN curl -L https://tarantool.io/release/2/installer.sh | bash;

RUN apt install -y \
gcc \
git \
tarantool \
tarantool-dev \
;

ENV PATH=/root/.cargo/bin:${PATH}
RUN set -e; \
Expand Down

0 comments on commit e1da52b

Please sign in to comment.