mirror of
https://github.com/TronoSfera/backup_service.git
synced 2026-05-18 10:03:32 +03:00
Fix server package layout in Dockerfile
This commit is contained in:
parent
71a5fdb142
commit
38095ff93a
1 changed files with 4 additions and 4 deletions
|
|
@ -5,11 +5,11 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
|
|||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
COPY requirements.txt /app/requirements.txt
|
||||
RUN pip install --no-cache-dir --upgrade pip && \
|
||||
pip install --no-cache-dir -r requirements.txt
|
||||
pip install --no-cache-dir -r /app/requirements.txt
|
||||
|
||||
COPY . .
|
||||
COPY . /app/server
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue