diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 7784ee1..0000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM python:3.11.1 - -WORKDIR /usr/src/app - -ARG PKG_VERSION=1 - -RUN pip install --no-cache-dir pipenv - -COPY setup.* Pipfile* ./ -COPY src ./src/ - -RUN SETUPTOOLS_SCM_PRETEND_VERSION_FOR_SAGETASKS=${PKG_VERSION} \ - python -m pip install . - -CMD [ "python", "-c", "import synapsefs" ]