Skip to content

Commit

Permalink
Merge 16fcb89 into e114ef5
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperlees committed Apr 4, 2021
2 parents e114ef5 + 16fcb89 commit 74d756e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
@@ -0,0 +1,13 @@
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

CMD ["black"]

0 comments on commit 74d756e

Please sign in to comment.