1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2024-12-12 22:36:10 +01:00
tinmop/ci/Containerfile
2022-02-21 20:22:31 +01:00

32 lines
454 B
Docker

ARG ARCH=
FROM docker.io/$ARCH/debian:latest
ARG DEBIAN_FRONTEND=noninteractive
ENV ARCH=
WORKDIR /src
COPY entrypoint.sh /entrypoint.sh
RUN apt update && apt -y full-upgrade && apt install -y --no-install-recommends \
build-essential \
autoconf \
automake \
git \
gettext \
gawk \
sbcl \
xdg-utils \
libssl-dev \
libncurses-dev \
libsqlite3-dev \
openssl \
curl \
ca-certificates \
gpg \
wget \
unzip && apt clean
ENTRYPOINT ["/entrypoint.sh"]