mirror of
https://github.com/creyD/crush_action.git
synced 2026-04-12 11:40:30 +02:00
5 lines
157 B
Docker
5 lines
157 B
Docker
FROM node:lts-alpine3.9
|
|
RUN apk update && apk upgrade && apk add --no-cache bash git openssh
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|