diff --git a/dockerfile b/dockerfile deleted file mode 100644 index 9be9da9..0000000 --- a/dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM python:3.10-slim - -# Probably should do update/upgrade for any CVEs - -WORKDIR / - -# Set up requirements -COPY requirements.txt requirements.txt -# hadolint ignore=DL3013 -RUN python3 -m pip install pip --upgrade --no-cache-dir && \ - python3 -m pip install -r requirements.txt --no-cache-dir - -# Copy in code -COPY ./src/musort-docker.py /musort.py - -# docker run --name musort --rm -it musort --help -ENTRYPOINT ["python3", "/musort.py"]