mirror of
https://gitea.baerentsen.space/FrederikBaerentsen/BrickTracker.git
synced 2026-05-03 13:40:28 -05:00
7 lines
124 B
Docker
7 lines
124 B
Docker
FROM python:slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
COPY . .
|
|
CMD ["python", "app.py"]
|