mirror of
https://github.com/creyD/autoflake_action.git
synced 2026-04-12 11:30:29 +02:00
10 lines
253 B
Docker
10 lines
253 B
Docker
FROM python:3.11.3-slim-bullseye
|
|
|
|
RUN apt update && apt install -y --no-install-recommends git
|
|
|
|
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"]
|