mirror of
https://github.com/LukeHagar/pypistats.dev.git
synced 2025-12-06 04:21:09 +00:00
8 lines
117 B
Docker
8 lines
117 B
Docker
FROM python:3.6-slim
|
|
|
|
ADD requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
ADD . .
|
|
|
|
EXPOSE 5000
|