-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
37 lines (30 loc) · 1.06 KB
/
Dockerfile
File metadata and controls
37 lines (30 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM debian:trixie-slim
LABEL maintainer="Scalified <scalified@gmail.com>"
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && \
apt install -y --no-install-recommends \
ca-certificates \
curl \
cron \
wget \
git \
gnupg \
lsb-release \
libicu76 \
supervisor && \
apt clean && \
rm -rf /var/lib/apt/lists/*
RUN mkdir -p /etc/apt/keyrings && \
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc && \
chmod a+r /etc/apt/keyrings/docker.asc && \
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
RUN apt update && \
apt install -y --no-install-recommends \
docker-ce \
docker-buildx-plugin \
docker-compose-plugin && \
apt clean && \
rm -rf /var/lib/apt/lists/*
COPY rootfs /
ENTRYPOINT ["/usr/local/bin/entrypoint"]