mirror of
https://github.com/aborelis/ASN-Label-Generator.git
synced 2026-03-14 08:33:28 +00:00
15 lines
295 B
Docker
15 lines
295 B
Docker
FROM python:3
|
|
|
|
WORKDIR /asn-gen
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
VOLUME ["/out"]
|
|
|
|
CMD [ "python", "./asn-gen.py"]
|
|
|
|
|
|
# docker exec -it $(docker run -d --rm debian:unstable bash -c "apt-get update && apt-get upgrade -y && sleep 86400") bash
|