We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21fa9f7 commit f129b8eCopy full SHA for f129b8e
Dockerfile
@@ -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