Skip to content

Commit ad75bae

Browse files
author
Harsh Pandya
committed
Add Dockerfile for deployment
1 parent 3dbd868 commit ad75bae

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM python:3.8-slim-buster
2+
3+
WORKDIR /app
4+
5+
COPY requirements.txt requirements.txt
6+
RUN pip3 install -r requirements.txt
7+
8+
RUN cd /app
9+
RUN mkdir config
10+
RUN mkdir module
11+
12+
COPY config /app/config
13+
COPY module /app/module

0 commit comments

Comments
 (0)