MGMA_training / Dockerfile
Jacksonee's picture
Update Dockerfile
297d4ec
raw
history blame contribute delete
No virus
291 Bytes
FROM node:18-bullseye-slim
RUN apt-get update && \
apt-get install -y git
RUN git clone https://gitgud.io/ayynon/MGMA-1B-2epoch-train.git /app
WORKDIR /app
RUN npm install
COPY Dockerfile greeting.md* .env* ./
RUN npm run build
EXPOSE 7860
ENV NODE_ENV=production
CMD [ "npm", "start" ]