Je suis nouveau à docker et je crée une simple application de test pour tester mon conteneur docker, mais docker n'arrive pas à localiser le fichier server.py
fichier.
La structure des répertoires de mon projet est la suivante
<project>
|
|-- Dockerfile
|-- app
|
|-- requirements.txt
|-- server.py
Vous trouverez ci-dessous le Dockerfile
le contenu :
FROM ubuntu:latest
MAINTAINER name <mail@domain.com>
COPY . /app # do I need this ?
COPY ./app/requirements.txt /tmp/requirements.txt
RUN apt-get -y update && \
apt-get install -y python-pip python-dev build-essential
RUN pip install -r /tmp/requirements.txt
WORKDIR /app
RUN chmod +x server.py # ERROR: No such file or directory
EXPOSE 5000
ENTRYPOINT ["python"]
CMD ["server.py"] # ERROR: No such file or directory
J'utilise boot2docker sous Windows.
Qu'est-ce qui m'échappe ?