mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 03:04:28 +00:00
6 lines
102 B
Docker
6 lines
102 B
Docker
|
FROM python:3
|
||
|
WORKDIR /app
|
||
|
ADD . /app
|
||
|
RUN pip install -r requirements.txt
|
||
|
CMD ["python", "wizard.py"]
|