9 lines
241 B
Groff
9 lines
241 B
Groff
|
FROM node:16.17.1
|
||
|
|
||
|
LABEL smallkoudai <smallkoudai@gmail.com>
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y --no-install-recommends ca-certificates curl async && \
|
||
|
rm -rf /var/lib/apt/lists/ && \
|
||
|
git config --global --add safe.directory '*'
|