forked from Hay1tsme/artemis
phantomlan
a3d2955fce
- update mysqldb to mariadb-alpine - update mysql healthcheck to also include Password - update memcached to alpine counterpart - update phpmyadmin port to not collide with ARTEMiS main app - add commented out options for DB Persistency - update Dockerfile - add read.py to Dockerfile - add docs/INSTALL_DOCKER.md guide
22 lines
466 B
Docker
22 lines
466 B
Docker
FROM python:3.9.15-slim-bullseye
|
|
|
|
RUN apt update && apt install default-libmysqlclient-dev build-essential libtk nodejs npm -y
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
RUN npm i -g nodemon
|
|
|
|
COPY entrypoint.sh entrypoint.sh
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
COPY index.py index.py
|
|
COPY dbutils.py dbutils.py
|
|
COPY read.py read.py
|
|
ADD core core
|
|
ADD titles titles
|
|
ADD log log
|
|
ADD cert cert
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|