Skip to content
Permalink
Newer
Older
100644 6 lines (6 sloc) 215 Bytes
April 15, 2021 16:00
1
FROM node:14-alpine
April 25, 2020 12:51
2
RUN apk update && apk upgrade && \
August 29, 2023 14:41
3
apk add --no-cache bash git openssh git-lfs
April 25, 2020 12:51
4
COPY entrypoint.sh /entrypoint.sh
5
COPY lib/actions/checkout/index.js /checkout.js
April 15, 2021 16:00
6
ENTRYPOINT ["/entrypoint.sh"]