1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00
veekun_pokedex/Dockerfile
route1rodent 266c027d1f improve python 3, docker support and README
- fix support for python 3.7
- simplify docker support
- update readme
2020-02-19 20:47:43 +01:00

13 lines
No EOL
226 B
Docker

ARG PYTHON_VERSION=${PYTHON_VERSION:-"3.7-slim"}
FROM python:${PYTHON_VERSION}
ADD ./ /app/
WORKDIR /app
RUN echo "Setting up project..." && \
pip install -e . && \
echo "DONE"
ENTRYPOINT ["pokedex"]
CMD ["status"]