You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
327 B
11 lines
327 B
FROM python:3.10
|
|
WORKDIR /app
|
|
COPY requirements.txt /app
|
|
RUN python3 -m pip install -r requirements.txt
|
|
COPY *.py /app
|
|
COPY protobufs_extra/ /app/protobufs_extra
|
|
COPY botExtensions/ /app/botExtensions
|
|
COPY webExtensions/ /app/webExtensions
|
|
COPY entities /app/entities
|
|
ENV PYTHONUNBUFFERED 1
|
|
ENTRYPOINT ["python3", "service.py"]
|