Files
2016-03-28 12:59:06 +00:00

6 lines
90 B
Docker

FROM python:alpine
RUN pip install Flask
COPY rng.py /
CMD ["python", "rng.py"]
EXPOSE 80