Skip to content

Commit

Permalink
Merge 3f8ad4b into e114ef5
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperlees committed Apr 4, 2021
2 parents e114ef5 + 3f8ad4b commit 1adfdfb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
@@ -0,0 +1,14 @@
FROM python:3-slim

RUN mkdir /src
COPY . /src/
RUN pip install --no-cache-dir --upgrade pip setuptools wheel \
&& apt update && apt install -y git \
&& cd /src \
&& pip install --no-cache-dir .[colorama,d] \
&& rm -rf /src \
&& apt remove -y git \
&& apt autoremove -y \
&& rm -rf /var/lib/apt/lists/*

CMD ["black"]

0 comments on commit 1adfdfb

Please sign in to comment.