forked from dockerfiles/debian-curl
init
This commit is contained in:
6
11/Dockerfile
Normal file
6
11/Dockerfile
Normal file
@ -0,0 +1,6 @@
|
||||
FROM debian:11
|
||||
|
||||
RUN apt update \
|
||||
&& apt install curl -y --no-install-recommends \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
13
11/docker-compose.yml
Normal file
13
11/docker-compose.yml
Normal file
@ -0,0 +1,13 @@
|
||||
version: '3.5'
|
||||
services:
|
||||
#########################
|
||||
debian11-x86:
|
||||
build: .
|
||||
hostname: debian11-x86
|
||||
platform: linux/amd64/v3
|
||||
image: debian11-curl
|
||||
debian11-arm:
|
||||
build: .
|
||||
hostname: debian11-arm
|
||||
platform: linux/arm64
|
||||
image: debain11-curl
|
Reference in New Issue
Block a user