You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
360 B
14 lines
360 B
FROM debian:bullseye
|
|
# https://packages.debian.org/bullseye/<package>
|
|
RUN DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get update \
|
|
&& apt-get -y install \
|
|
ca-certificates=20210119 \
|
|
curl=7.74.0-1.3 \
|
|
gettext-base=0.21-4 \
|
|
jq=1.6-2.1 \
|
|
&& apt-get clean
|
|
|
|
COPY bin/ /opt/resource/
|
|
COPY tag /opt/resource/version
|
|
RUN chmod +x /opt/resource/*
|