12345678910111213141516171819202122 |
- #FROM python:3.10
- #
- #WORKDIR ./peoject
- #
- #COPY ./requirements.txt /app/requirement.txt
- #
- #
- #RUN set -eux \
- # && pip install --upgrade pip \
- # && pip install -r ./requirements.txt
- #
- #COPY . /project1
- FROM python:3.10
- WORKDIR /app
- COPY ./requirements.txt .
- RUN pip install -r requirements.txt
- COPY . .
|