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