Skip to content

Commit f129b8e

Browse files
committed
fixes
1 parent 21fa9f7 commit f129b8e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM python:slim
2+
3+
WORKDIR /app
4+
COPY requirements.lock ./
5+
RUN PYTHONDONTWRITEBYTECODE=1 pip install --no-cache-dir -r requirements.lock
6+
7+
COPY src .
8+
CMD python main.py

0 commit comments

Comments
 (0)