1
0
mirror of synced 2024-11-27 23:40:48 +01:00

fix(docker): add pkg-config for docker build process

This commit is contained in:
Rylie 2023-11-05 11:09:52 +07:00
parent dde397a96c
commit b4a0736f7b
No known key found for this signature in database

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