Skip to content

Commit afdd2b3

Browse files
committed
Adding dockerfile for linkedopendata
1 parent 4c7a353 commit afdd2b3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM python:3.8-slim-buster
2+
3+
RUN apt-get update && apt-get install -y git
4+
5+
WORKDIR /app
6+
7+
COPY requirements.txt requirements.txt
8+
RUN pip3 install -r requirements.txt
9+
10+
COPY . .
11+
12+
CMD [ "python3", "import_one.py", "Q9065"]

0 commit comments

Comments
 (0)