6 lines
83 B
Docker
6 lines
83 B
Docker
FROM python
|
|
RUN pip install Flask
|
|
COPY gen.py .
|
|
CMD ["python", "gen.py"]
|
|
EXPOSE 80
|