mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-02 17:30:20 +00:00
6 lines
90 B
Docker
6 lines
90 B
Docker
FROM python:alpine
|
|
RUN pip install Flask
|
|
COPY rng.py /
|
|
CMD ["python", "rng.py"]
|
|
EXPOSE 80
|