mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2025-07-03 10:06:46 -04:00
14 lines
219 B
Docker
14 lines
219 B
Docker
FROM python:3.8
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|
|
|
|
CMD ["python", "-u", "server.py"]
|