Files
DIKER0K c8d8c65251
All checks were successful
Build and Deploy / deploy (push) Successful in 41s
add: verify code in telegram
2025-07-21 08:07:21 +05:00

15 lines
235 B
Plaintext

FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
RUN mkdir -p /app/static/skins /app/static/capes /app/static/capes_store && \
chown -R 1000:1000 /app/static
EXPOSE 3000