File: Dockerfile

package info (click to toggle)
python-digitalocean 1.16.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 912 kB
  • sloc: python: 4,961; makefile: 46
file content (14 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Dockerfile made to test this
FROM python:alpine

MAINTAINER Lorenzo Setale <lorenzo@setale.me>

RUN pip3 install -U python-digitalocean pytest

WORKDIR /root/
ADD . /root/python-digitalocean

WORKDIR /root/python-digitalocean
RUN pip3 install -U -r requirements.txt

CMD python3 -m pytest