mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
9c25b268eb
* improve python 3, docker support and README - fix support for python 3.7 - simplify docker support - update readme - remove obsolete item-questions file
13 lines
No EOL
226 B
Docker
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"] |