Annif / Dockerfile
Juho Inkinen
Remove other than nn ensemble projects; add KAUNO and YKL projects
34a07ad unverified
raw
history blame
311 Bytes
FROM quay.io/natlibfi/annif:1.0
# Set up a new user named "user" with user ID 1000
USER root
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
COPY --chown=user:user projects.d .
COPY --chown=user:user data/vocabs data/vocabs
CMD ["gunicorn", "annif:create_app()", "--bind", "0.0.0.0:7860"]