Files
autoflake_action/Dockerfile
2023-05-23 12:46:15 +02:00

10 lines
262 B
Docker

FROM python:3.11.3-slim-bullseye
RUN apt update && apt 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 autoflake
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]