mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2025-01-08 22:24:27 +00:00
5 lines
102 B
Docker
5 lines
102 B
Docker
FROM python:3
|
|
WORKDIR /app
|
|
ADD . /app
|
|
RUN pip install -r requirements.txt
|
|
CMD ["python", "wizard.py"]
|