1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
j1nxie 359f3e062c
fix(docker): rename `log` to `logs` for consistency 2023-11-05 11:08:11 +07:00
j1nxie de986edae5
fix(docker): add pkg-config for build process 2023-11-05 11:07:59 +07:00
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
FROM python:3.9.15-slim-bullseye
RUN apt update && apt install default-libmysqlclient-dev build-essential libtk nodejs npm -y
RUN apt update && apt install default-libmysqlclient-dev build-essential libtk nodejs npm pkg-config -y
WORKDIR /app
COPY requirements.txt requirements.txt
@ -15,7 +15,7 @@ COPY dbutils.py dbutils.py
COPY read.py read.py
ADD core core
ADD titles titles
ADD log log
ADD logs logs
ADD cert cert
ENTRYPOINT [ "/app/entrypoint.sh" ]