File: Dockerfile

package info (click to toggle)
stac-validator 3.10.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,280 kB
  • sloc: python: 3,429; makefile: 35
file content (8 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
FROM python:3.8-slim-buster
WORKDIR /code
COPY . /code/

RUN pip install . && \
    stac-validator --help

ENTRYPOINT ["stac-validator"]