Skip to content

Commit 2c24453

Browse files
author
Will
committed
Add Dockerfile
Signed-off-by: Will <[email protected]>
1 parent 9b40d9b commit 2c24453

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.dockerignore

Whitespace-only changes.

Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM python:3.6-alpine
2+
3+
ENV APP_DIR /src/app/
4+
5+
RUN mkdir -p $APP_DIR
6+
7+
COPY ./requirements.txt ${APP_DIR}
8+
9+
WORKDIR ${APP_DIR}
10+
11+
RUN ["pip", "install", "-r", "./requirements.txt"]
12+
13+
COPY . .

0 commit comments

Comments
 (0)