6 lines
120 B
Docker
6 lines
120 B
Docker
FROM python:alpine
|
|
|
|
ADD requirements.txt /
|
|
ADD hugo-encryptor.py /
|
|
|
|
RUN pip install --no-cache-dir -r /requirements.txt
|