Remove Dockerfile, we will add a new one later

This commit is contained in:
Björn Busse 2020-11-19 13:59:45 +01:00
parent d78e4ceffc
commit cd8bb7e63b
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
FROM python:3.6-alpine as base
FROM base as builder
RUN mkdir /install
WORKDIR /install
COPY requirements.txt /requirements.txt
RUN pip install --install-option="--prefix=/install" -r /requirements.txt
FROM base
COPY --from=builder /install /usr/local
COPY src /app