mirror of
https://github.com/bvanroll/test-repo.git
synced 2025-08-28 19:42:39 +00:00
7 lines
107 B
Docker
7 lines
107 B
Docker
FROM python:onbuild
|
|
COPY requirements.txt .
|
|
ENV PORT 8080
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["python"]
|
|
CMD ["app.py"]
|