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