Files
autopep8_action/Dockerfile
2022-09-28 00:08:11 +02:00

10 lines
252 B
Docker

FROM node:lts-alpine3.9
RUN apk update && apk add --no-cache bash git openssh python3 py3-pip
RUN pip install --no-cache-dir -q --upgrade pip
RUN pip install --no-cache-dir -q autopep8
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]