mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
363 B
21 lines
363 B
ARG PYTHON_VERSION="3.6"
|
|
|
|
FROM python:${PYTHON_VERSION}
|
|
|
|
COPY requirements.txt /
|
|
RUN pip install --no-cache-dir -r /requirements.txt
|
|
|
|
COPY . /doccano
|
|
|
|
WORKDIR /doccano
|
|
|
|
ENV DEBUG="True"
|
|
ENV SECRET_KEY="change-me-in-production"
|
|
ENV BIND="0.0.0.0:80"
|
|
ENV WORKERS="2"
|
|
ENV GOOGLE_TRACKING_ID=""
|
|
ENV AZURE_APPINSIGHTS_IKEY=""
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["/doccano/tools/run.sh"]
|