This commit is contained in:
Lee
2023-05-03 06:50:19 +01:00
parent c7b18f6fe0
commit 0339b3d4cb
5 changed files with 47 additions and 1 deletions

View File

@ -0,0 +1,10 @@
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