File: Dockerfile

package info (click to toggle)
stac-validator 3.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,120 kB
  • sloc: python: 3,347; makefile: 100
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"]