15 lines
235 B
Plaintext
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
|