fix paths
This commit is contained in:
parent
21d1d905a7
commit
21c23daeba
2 changed files with 1 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
.dockerignore
|
.dockerignore
|
||||||
.git
|
.git
|
||||||
configs
|
configs
|
||||||
requirements.txt
|
|
||||||
**/*.pyc
|
**/*.pyc
|
||||||
**/__pycache__
|
**/__pycache__
|
||||||
README.md
|
README.md
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
FROM python:alpine3.21
|
FROM python:alpine3.21
|
||||||
|
WORKDIR /pgbot
|
||||||
|
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
ENV PIP_ROOT_USER_ACTION=ignore
|
ENV PIP_ROOT_USER_ACTION=ignore
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
WORKDIR /pgbot
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
CMD /pgbot/pgbot
|
CMD /pgbot/pgbot
|
||||||
|
|
Loading…
Reference in a new issue