Skip to content

Commit

Permalink
fix: Перенес файл Dockerfile в корень проекта.
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonVagabond committed Mar 9, 2024
1 parent 00c8925 commit c208e45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile → src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

RUN pip install --upgrade pip
COPY ./requirements.txt .
COPY requirements.txt .

RUN \
apk add --no-cache make && \
Expand All @@ -15,7 +15,7 @@ RUN \
python3 -m pip install -r requirements.txt --no-cache-dir && \
apk --purge del .build-deps

COPY . .
COPY .. .



0 comments on commit c208e45

Please sign in to comment.