From 21c23daeba7c073c5733c0d77053d8c0b4cfc32c Mon Sep 17 00:00:00 2001 From: Von Random <von@mechanus.net> Date: Fri, 31 Jan 2025 14:34:34 +0200 Subject: [PATCH] fix paths --- .dockerignore | 1 - Dockerfile | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.dockerignore b/.dockerignore index 732af27..80cd94d 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,7 +1,6 @@ .dockerignore .git configs -requirements.txt **/*.pyc **/__pycache__ README.md diff --git a/Dockerfile b/Dockerfile index dfb9a3b..4aa6a75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ FROM python:alpine3.21 +WORKDIR /pgbot COPY requirements.txt . ENV PIP_ROOT_USER_ACTION=ignore RUN pip install -r requirements.txt -WORKDIR /pgbot COPY . . - CMD /pgbot/pgbot