mirror of
https://github.com/StevenBlack/hosts.git
synced 2025-03-14 10:36:53 +00:00
14 lines
207 B
Docker
14 lines
207 B
Docker
FROM docker.io/python:3-alpine
|
|
|
|
ENV IN_CONTAINER 1
|
|
|
|
RUN apk add --no-cache git sudo
|
|
|
|
COPY . /hosts
|
|
|
|
RUN pip install --no-cache-dir --upgrade -r /hosts/requirements.txt
|
|
|
|
ENV PATH $PATH:/hosts
|
|
|
|
WORKDIR /hosts
|