init
This commit is contained in:
commit
39659b6fd2
5 changed files with 59 additions and 0 deletions
15
BaseCommonImage/Dockerfile
Normal file
15
BaseCommonImage/Dockerfile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Debian13-slim, with node (requiered for some forgejo actions)
|
||||
FROM debian:13-slim
|
||||
ENV NODE_VERSION=20
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
curl ca-certificates gnupg git openssh-client \
|
||||
&& curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - \
|
||||
&& apt-get install -y nodejs \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Sanity check (fail build early)
|
||||
RUN node --version && npm --version && git --version
|
||||
|
||||
CMD ["bash"]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue