Matou-Garou / Dockerfile
Jofthomas's picture
Jofthomas HF staff
whqtever
5fb374b
raw
history blame contribute delete
No virus
784 Bytes
FROM ubuntu:22.04 as base
WORKDIR /app
ENV NODE_ENV=production
FROM base as build
RUN apt-get update -qq && \
apt-get install -y git curl unzip wget gnupg build-essential lsb-release
COPY . .
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs
RUN useradd -m -u 1000 user
RUN chown -R user:user /app /usr/local /tmp
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
RUN npm install --include=dev @huggingface/inference
RUN npm install --include=dev @huggingface/hub
RUN curl -L -O https://github.com/get-convex/convex-backend/releases/download/precompiled-2024-05-07-13337fd/convex-local-backend-x86_64-unknown-linux-gnu.zip && \
unzip convex-local-backend-x86_64-unknown-linux-gnu.zip
CMD ["./run.sh"]