18 lines
322 B
Plaintext
18 lines
322 B
Plaintext
FROM python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "3000"]
|
|
|
|
RUN mkdir -p /app/static/skins /app/static/capes /app/static/capes_store && \
|
|
chown -R 1000:1000 /app/static
|
|
USER 1000:1000
|