mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-07-07 01:24:06 +00:00
14 lines
220 B
Plaintext
14 lines
220 B
Plaintext
FROM arm64v8/python:3-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
COPY static static
|
|
COPY templates templates
|
|
COPY main.py .
|
|
COPY lib.py .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD ["python", "main.py"]
|