Skip to content

Commit f96e45e

Browse files
committed
Add Dockerfile
1 parent af09958 commit f96e45e

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.6.9-alpine3.10
2+
3+
LABEL maintainer="Rhino Assessment Team <[email protected]>"
4+
LABEL pacu.version="1.0.0"
5+
6+
# Install Pacu
7+
WORKDIR /usr/src/pacu/
8+
COPY ./requirements.txt ./
9+
RUN pip install -r requirements.txt
10+
COPY ./ ./
11+
12+
ENTRYPOINT [ "python3" ]
13+
CMD ["pacu.py"]

0 commit comments

Comments
 (0)