forked from TrueCloudLab/action-env
Require git binary in Actions images
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
This commit is contained in:
parent
b9ee619374
commit
d837dacfd1
3 changed files with 9 additions and 2 deletions
|
@ -5,3 +5,10 @@ is available by default. This is not the case in Forgejo Actions, and we need
|
|||
to add Node.js to community provided images explicitly.
|
||||
|
||||
This repo contains Dockerfile for images used by TrueCloudLab.
|
||||
|
||||
## Adding new images
|
||||
|
||||
Images for Forgejo Actions must contain:
|
||||
|
||||
- Node.js
|
||||
- Git
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM docker.io/node:20-bookworm-slim as node
|
||||
FROM docker.io/python:3.11-slim-bookworm
|
||||
FROM docker.io/python:3.11-bookworm
|
||||
COPY --from=node /usr/local /usr/local
|
||||
COPY --from=node /opt /opt
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM docker.io/node:20-bookworm-slim as node
|
||||
FROM docker.io/python:3.13-slim-bookworm
|
||||
FROM docker.io/python:3.13-bookworm
|
||||
COPY --from=node /usr/local /usr/local
|
||||
COPY --from=node /opt /opt
|
||||
|
|
Loading…
Reference in a new issue