correct location for readme and requirements
This commit is contained in:
parent
766acdcd9d
commit
e089470db8
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,6 @@ FROM python:3.8.11-slim
|
|||
|
||||
ENV DOCKER_KASSOUBOT=True
|
||||
|
||||
WORKDIR /opt
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN apt update && \
|
||||
apt install git -y && \
|
||||
|
@ -11,6 +9,8 @@ RUN apt update && \
|
|||
apt purge git -y
|
||||
|
||||
COPY README.md .
|
||||
|
||||
WORKDIR /opt
|
||||
COPY src .
|
||||
|
||||
CMD ["python", "-u", "./main.py"]
|
||||
|
|
Reference in a new issue