mirror of
https://github.com/SpudGunMan/meshing-around.git
synced 2026-03-28 17:32:36 +01:00
19 lines
361 B
Docker
19 lines
361 B
Docker
FROM python:3.10-slim
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
RUN apt-get update && apt-get install -y gettext && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
COPY . .
|
|
|
|
COPY config.ini /app/config.ini
|
|
COPY entrypoint.sh /app/entrypoint.sh
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|