From 683002343c92d3733d3c71c385a852835c7d2695 Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Mon, 1 Apr 2024 05:22:35 +0200 Subject: [PATCH] update docker file --- .gitignore | 1 + Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c55dece..9667085 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ .vscode .venv/ __pycache__/ +history/ diff --git a/Dockerfile b/Dockerfile index 8deae99..2d0729e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM python:3.10.6-slim # Install app -COPY . /usr/app -WORKDIR /usr/app +COPY . /app +WORKDIR /app # Install dependencies RUN pip install --upgrade pip && pip install -r requirements.txt