mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 23:21:15 -03:00
build_tools/check.sh would give more coverage (the translation checks is the main difference) but it tests embed-data builds; for now testing, traditionally installed builds is more important (especially since I always test check.sh locally already). In future we will probably make embedding mandatory and get rid of this schism.
45 lines
925 B
Docker
45 lines
925 B
Docker
FROM ubuntu:jammy
|
|
LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell
|
|
|
|
ENV LANG=C.UTF-8
|
|
ENV LC_ALL=C.UTF-8
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install --no-install-recommends \
|
|
cmake ninja-build \
|
|
build-essential \
|
|
ca-certificates \
|
|
cargo \
|
|
clang \
|
|
gettext \
|
|
git \
|
|
libpcre2-dev \
|
|
locales \
|
|
openssl \
|
|
python3 \
|
|
python3-pexpect \
|
|
rustc \
|
|
sudo \
|
|
tmux \
|
|
python3-pip \
|
|
&& locale-gen en_US.UTF-8 \
|
|
&& apt-get clean
|
|
|
|
RUN pip install black
|
|
|
|
RUN groupadd -g 1000 fishuser \
|
|
&& useradd -p $(openssl passwd -1 fish) -d /home/fishuser -m -u 1000 -g 1000 fishuser \
|
|
&& adduser fishuser sudo \
|
|
&& mkdir -p /home/fishuser/fish-build \
|
|
&& mkdir /fish-source \
|
|
&& chown -R fishuser:fishuser /home/fishuser /fish-source
|
|
|
|
USER fishuser
|
|
WORKDIR /home/fishuser
|
|
|
|
COPY fish_run_tests.sh /
|
|
|
|
ENV FISH_CHECK_LINT=false
|
|
|
|
CMD /fish_run_tests.sh
|