docker-images/gitea-runner/MavenDockerfile

10 lines
245 B
Plaintext
Raw Normal View History

2023-05-03 05:50:19 +00:00
FROM docker:stable
# Install packages
RUN apk add --no-cache curl wget git
# Install Node 18
RUN apk add nodejs npm --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main --allow-untrusted
# Install Maven
RUN apk add maven