Skip to content

Commit

Permalink
Change Dockerfile structure for docker hub autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
devste committed Apr 24, 2019
1 parent 997d58b commit 640a068
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Dockerfile

This file was deleted.

1 change: 1 addition & 0 deletions Dockerfile
1 change: 1 addition & 0 deletions Dockerfile.ubuntu
11 changes: 11 additions & 0 deletions Dockerfile.ubuntu.18.10
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM ubuntu:18.10
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git \
python3-pip \
python3-setuptools \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
ENTRYPOINT ["pre-commit"]

0 comments on commit 640a068

Please sign in to comment.