File: Dockerfile

package info (click to toggle)
python-cdsapi 0.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 152 kB
  • sloc: python: 670; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
FROM python:3.7-alpine 

RUN pip3 install cdsapi
WORKDIR /input
COPY request.json request.json
WORKDIR /output
WORKDIR /app
COPY retrieve.py retrieve.py

CMD ["python", "retrieve.py"]