Merkava / Dockerfile
WaveExistence's picture
Update Dockerfile
622f407 verified
raw
history blame contribute delete
276 Bytes
FROM node:18-bullseye-slim
RUN apt-get update && \
apt-get install -y git
RUN git clone https://gitgud.io/reanon/nonono.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" ]