web/Dockerfile
2024-07-28 03:31:02 +05:00

29 lines
705 B
Docker

FROM python:3.12.3-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt upgrade -y && apt install gcc -y && apt clean # && rm /var/lib/apt/lists/*
WORKDIR /app
RUN pip install --no-cache-dir wheel Cython
COPY ./rl_string_helper ./rl_string_helper
RUN pip3 install --no-cache-dir ./rl_string_helper
COPY ./database-lib ./database-lib
RUN pip3 install --no-cache-dir ./database-lib
COPY ./core ./core
RUN pip3 install --no-cache-dir ./core
# COPY ./server ./server
COPY ./requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
COPY ./requirements-fast.txt ./
RUN pip3 install --no-cache-dir -r requirements-fast.txt
EXPOSE 7080
CMD ["python3", "-m", "server", "server"]