teller_bank_job / Dockerfile
Marko Vukovic
Created Kino app
41e3802
raw
history blame
521 Bytes
FROM ghcr.io/livebook-dev/livebook:latest-cuda11.8
ENV LIVEBOOK_APP_SERVICE_NAME "Teller Bank Job"
ENV LIVEBOOK_SPACE_REPO_NAME = "teller_bank_job"
ENV LIVEBOOK_APP_SERVICE_URL "https://huggingface.co/spaces/mvkvc/$LIVEBOOK_SPACE_REPO_NAME"
ENV LIVEBOOK_UPDATE_INSTRUCTIONS_URL "https://livebook.dev"
ENV LIVEBOOK_WITHIN_IFRAME "true"
ENV LIVEBOOK_APPS_PATH "/public-apps"
ENV LIVEBOOK_DATA_PATH "/data"
ENV LIVEBOOK_PORT 7860
EXPOSE 7860
USER root
COPY public-apps/ /public-apps
RUN mkdir -p /data
RUN chmod 777 /data