hosts/Dockerfile

14 lines
207 B
Docker
Raw Normal View History

2022-07-05 12:39:02 -04:00
FROM docker.io/python:3-alpine
2022-07-05 12:39:02 -04:00
ENV IN_CONTAINER 1
2020-10-13 23:36:40 -04:00
2022-07-05 12:39:02 -04:00
RUN apk add --no-cache git sudo
2022-07-05 13:38:20 -04:00
COPY . /hosts
2022-07-05 12:39:02 -04:00
2022-07-05 13:38:20 -04:00
RUN pip install --no-cache-dir --upgrade -r /hosts/requirements.txt
2022-07-05 12:39:02 -04:00
2022-07-05 13:38:20 -04:00
ENV PATH $PATH:/hosts
2022-07-05 13:47:56 -04:00
WORKDIR /hosts