mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-16 19:00:38 +09:00
15 lines
292 B
Text
15 lines
292 B
Text
|
|
FROM docker.io/cloudflare/sandbox:0.7.0
|
||
|
|
|
||
|
|
RUN apt-get update \
|
||
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||
|
|
bash \
|
||
|
|
ca-certificates \
|
||
|
|
coreutils \
|
||
|
|
curl \
|
||
|
|
findutils \
|
||
|
|
git \
|
||
|
|
tar \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
WORKDIR /workspace
|