This repository has been archived on 2022-10-14. You can view files and clone it, but cannot push or open issues/pull-requests.
gulag-dockerized/source/guweb.Dockerfile

5 lines
173 B
Docker

FROM python:3.9
ADD guweb /guweb
WORKDIR /guweb
RUN pip install cryptography -r ext/requirements.txt
CMD ["hypercorn", "-b", "unix:/run/guweb.sock", "-m", "0000", "main.py"]