ruz-bot/Dockerfile
Administrator 3c275cabf3 ru lang
2023-04-08 15:00:27 +03:00

13 lines
337 B
Docker

FROM python:3.10
RUN mkdir /usr/src/app
WORKDIR /usr/src/app
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y locales locales-all
ENV LANGUAGE ru_RU.UTF-8
ENV LANG ru_RU.UTF-8
ENV LC_ALL ru_RU.UTF-8
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
ENTRYPOINT ["python", "entrypoint.py"]