mirror of
https://github.com/hubHarmony/servii-backend.git
synced 2024-11-17 21:40:31 +00:00
9 lines
184 B
Docker
9 lines
184 B
Docker
|
FROM python:3.12-alpine3.20
|
||
|
LABEL authors="hapso"
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY . /app
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
EXPOSE 3000/tcp
|
||
|
EXPOSE 3000/udp
|
||
|
CMD ["python3", "app.py"]
|