From e25c23cf1c363282bb370fabaf41212ce5be29db Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Thu, 12 Nov 2020 15:20:12 +0000 Subject: [PATCH] Removed unused files from root --- .gitattributes | 0 Dockerfile | 20 -------------------- 2 files changed, 20 deletions(-) delete mode 100644 .gitattributes delete mode 100644 Dockerfile diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index e69de29b..00000000 diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index c9cbf4ad..00000000 --- a/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM python:3.6 - -ENV PYTHONUNBUFFERED=1 \ - POETRY_VERSION=1.0.3 \ - POETRY_HOME="/opt/poetry" \ - POETRY_VIRTUALENVS_IN_PROJECT=true \ - POETRY_NO_INTERACTION=1 - -ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH" - -WORKDIR /app - -RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python - -COPY . ./ - -RUN poetry install --no-dev --no-interaction - -EXPOSE 5000 -CMD ["poetry", "run", "python", "-m", "openflexure_microscope.api.app"]