mirror of
https://github.com/creyD/prettier_action.git
synced 2026-04-12 19:30:30 +02:00
6 lines
121 B
Docker
6 lines
121 B
Docker
FROM node:latest
|
|
COPY entrypoint.sh ./entrypoint.sh
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
ENTRYPOINT ["./entrypoint.sh"]
|