Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
12345678910111213 |
- # init a base image (Alpine is small Linux distro)
- FROM python:3.10-alpine
- # update pip to minimize dependency errors
- RUN pip install --upgrade pip
- # define the present working directory
- WORKDIR /docker-flask-test
- # copy the contents into the working dir
- ADD . /docker-flask-test
- # run pip to install the dependencies of the flask app
- RUN pip install -r requirements.txt
- EXPOSE 5000
- # define the command to start the container
- CMD ["python","app.py"]
|