Added first draft
This commit is contained in:
parent
276bfa891a
commit
c3f0b11a7f
5 changed files with 280 additions and 0 deletions
17
dockerfile
Normal file
17
dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
|||
# SPDX-FileCopyrightText: 2023 Tobias Schmidl
|
||||
#
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
FROM debian:stable-slim
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
ARG GIT_COMMIT
|
||||
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later" \
|
||||
org.opencontainers.image.base.name="docker.io/debian:stable-slim" \
|
||||
org.opencontainers.image.title=buildimage
|
||||
LABEL org.opencontainers.image.revision=${GIT_COMMIT}
|
||||
|
||||
RUN apt update \
|
||||
&& apt install --assume-yes --no-install-recommends \
|
||||
build-essential \
|
||||
&& find /var/lib/apt -type f -delete
|
Loading…
Add table
Add a link
Reference in a new issue