Skip to content
Snippets Groups Projects
Dockerfile 159 B
FROM python:3.6

ENV INSTALL_DIR /orcasong
ADD . $INSTALL_DIR
RUN cd $INSTALL_DIR && make install
RUN echo "ORCASONG\n"
WORKDIR /orcasong
ENTRYPOINT /bin/bash