hosts/Dockerfile

14 lines
207 B
Docker
Raw Permalink Normal View History

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