Updates for allhands (#3)

This commit is contained in:
Bret Fisher
2022-05-02 15:40:42 -04:00
committed by GitHub
parent 4678180549
commit 1820843fc8
10 changed files with 511 additions and 163 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# sample dockerfile for testing call-docker-build.yaml
FROM alpine:edge
RUN apk add --no-cache curl
WORKDIR /test
COPY . .
ENTRYPOINT ["curl"]
CMD ["--help"]