Skip to content

Commit 1bf0160

Browse files
committed
Add Dockerfile
1 parent a3ab264 commit 1bf0160

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM python:3.7
2+
3+
LABEL maintainer="github.com/camilamaia"
4+
5+
ENV PATH="~/.local/bin:${PATH}"
6+
7+
RUN pip install pip setuptools --upgrade
8+
9+
RUN pip install scanapi
10+
11+
COPY . /app
12+
13+
WORKDIR /app
14+
15+
CMD ["scanapi"]

0 commit comments

Comments
 (0)