Skip to content
Snippets Groups Projects
Commit bed0c1b6 authored by E. Madison Bray's avatar E. Madison Bray
Browse files

[docker] add the sample Dockerfile and requirements.txt

for the baseline recsystem
parent bb50564e
No related branches found
No related tags found
No related merge requests found
Pipeline #1207 failed
FROM python:3.6-slim-buster
WORKDIR /usr/src/app
COPY requirements.txt ./
# pip needs to be upgraded before some dependencies can be installed properly
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "baseline.py" ]
aiohttp==3.6.2
click==7.1.2
coloredlogs==14.0
jsonrpcserver==4.1.3
PyJWT==1.5.3
websockets==8.1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment