Skip to content

Commit b0c9368

Browse files
committed
add backend Dockerfile
1 parent 584dbf4 commit b0c9368

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Dockerfile.backend

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM python:3.11-slim
2+
3+
WORKDIR /app
4+
5+
COPY docs/requirements.txt ./requirements.txt
6+
RUN pip install --no-cache-dir -r requirements.txt
7+
8+
COPY Backend/ ./Backend/
9+
COPY data/ ./data/
10+
11+
ENV DATA_PATH=/data/sprint_data.json
12+
ENV OUTPUT_PATH=/data/health.json

0 commit comments

Comments
 (0)