calculator / Dockerfile
teven's picture
Fixing wrong path
715558e
raw
history blame
255 Bytes
FROM python:3.7
WORKDIR /app_to_share
COPY ./requirements.txt /app_to_share/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app_to_share/requirements.txt
COPY . .
CMD ["bokeh", "serve", "optimal_training", "--allow-websocket-origin=*"]