MatrixYao/how_many_data_points_zh
1
1FROM python:3.72 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9COPY . .10 11CMD ["bokeh", "serve", "naacl_demo", "--allow-websocket-origin=*"]12 